“javaScript html кодировать” Ответ

кодировать в 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 кодировать

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

JavaScript HTML Специальные символы

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

Ответы похожие на “javaScript html кодировать”

Вопросы похожие на “javaScript html кодировать”

Больше похожих ответов на “javaScript html кодировать” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования