Files
2026-01-12 09:12:41 +00:00

10 lines
192 B
JavaScript

/**
* The smallest way to encode a character.
*
* @param {number} code
* @returns {string}
*/
export function formatBasic(code) {
return '&#x' + code.toString(16).toUpperCase() + ';'
}