79590086

Date: 2025-04-24 08:13:56
Score: 0.5
Natty:
Report link
// for UNICODE less/equal 0xFFFF
var star = 0x2605;  // ★
var s = String.fromCharCode(star)   // ★ ->  ★
var htmlEnt = `&#x${s.charCodeAt(0).toString(16)};`
console.log(s," ->" ,htmlEnt)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rossati