Files

10 lines
192 B
JavaScript
Raw Permalink Normal View History

2025-08-27 14:05:33 +08:00
/**
* The smallest way to encode a character.
*
* @param {number} code
* @returns {string}
*/
export function formatBasic(code) {
return '&#x' + code.toString(16).toUpperCase() + ';'
}