jccp_a/vuepress/node_modules/stringify-entities/lib/util/format-basic.js
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08: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() + ';'
}