zeroWidthSpace
This tag generates a zero width space character
Created by: hackvertor
Installed 1 times
Viewed: 35
Category: String
Created on: Thursday, October 10, 2024 at 9:13:15 PM
Updated on: Thursday, May 22, 2025 at 12:54:20 PM
Tag arguments
[]
Code
class zeroWidthSpace {
encode(input) {
return String.fromCodePoint(0x200b);
}
}