zeroWidthSpace

This tag generates a zero width space character

Created by: hackvertor
Installed 1 times

Category: String

Created on: Thursday, October 10, 2024 at 9:13:15 PM

Updated on: Thursday, October 10, 2024 at 9:13:15 PM

This is a built in tag
Tag arguments
[]
Code
class zeroWidthSpace {
  encode(input) {
    return String.fromCodePoint(0x200b);
  }
}