C:
char c = '\u204D';
printf("%c\n", c); // Output: ⁍
JavaScript:
const char = '\u204D';
console.log(char); // Output: ⁍
Java:
char c = '\u204D';
System.out.println(c); // Output: ⁍
JSON:
{"text": "\u204D"} // Value: ⁍
Python:
char = '\u204D'
print(char) # Output: ⁍
Perl:
my $char = "\x{204D}";
print $char; # Output: ⁍
PHP:
$char = "\x{204D}";
echo $char; // Output: ⁍
Ruby:
char = "\u{204D}"
puts char # Output: ⁍
Rust:
let c = '\u{204D}';
println!("{}", c); // Output: ⁍
Go:
char := '\u204D'
fmt.Printf("%c\n", char) // Output: ⁍
CSS:
/* CSS content property */
.element::before {
content: "\00204D"; /* Display: ⁍ */
}
HTML Decimal:
<p>HTML decimal: ⁍</p> <!-- Display: ⁍ -->
HTML Hexadecimal:
<p>HTML hex: ⁍</p> <!-- Display: ⁍ -->
URL Encoding:
// ⁍ URL encoding
https://unicodefinder.com/search.php?query=%E2%81%8D
MD5:
b37d5e109d9c6b24ad7a18c4b547b9c1
SHA1:
bbf93308b7293cd6196da62086e65cce1d3aca31
Base64:
4oGN