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