“JavaScript HTML -Encode” Code-Antworten

codieren in javaScript

// Define the string
var string = 'Hello World!';

// Encode the String
var encodedString = btoa(string);
console.log(encodedString); // Outputs: "SGVsbG8gV29ybGQh"

// Decode the String
var decodedString = atob(encodedString);
console.log(decodedString); // Outputs: "Hello World!"
DCmax1k

JavaScript HTML -Encode

function htmlEntities(s){
	return s.replace(/[\u00A0-\u9999<>\&]/gim, function(i) {
  		return '&#' + i.charCodeAt(0) + ';';
	});
}
Friendly Hawk

JavaScript HTML -Sonderzeichen

return mystring.replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
Grepper

JQ Uncode String

# -r enable raw output

jq -r .[0].string FILE.json
sambo

Ähnliche Antworten wie “JavaScript HTML -Encode”

Fragen ähnlich wie “JavaScript HTML -Encode”

Weitere verwandte Antworten zu “JavaScript HTML -Encode” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen