C:
char c = '\u104D';
printf("%c\n", c); // Output: ၍
JavaScript:
const char = '\u104D';
console.log(char); // Output: ၍
Java:
char c = '\u104D';
System.out.println(c); // Output: ၍
JSON:
{"text": "\u104D"} // Value: ၍
Python:
char = '\u104D'
print(char) # Output: ၍
Perl:
my $char = "\x{104D}";
print $char; # Output: ၍
PHP:
$char = "\x{104D}";
echo $char; // Output: ၍
Ruby:
char = "\u{104D}"
puts char # Output: ၍
Rust:
let c = '\u{104D}';
println!("{}", c); // Output: ၍
Go:
char := '\u104D'
fmt.Printf("%c\n", char) // Output: ၍
CSS:
/* CSS content property */
.element::before {
content: "\00104D"; /* 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=%E1%81%8D
MD5:
1b1767048efa4f4de3b320a83d37517b
SHA1:
7d26b9c97a713a92974b54ef528dd14408847f61
Base64:
4YGN