C:
char c = '\u1054';
printf("%c\n", c); // Output: ၔ
JavaScript:
const char = '\u1054';
console.log(char); // Output: ၔ
Java:
char c = '\u1054';
System.out.println(c); // Output: ၔ
JSON:
{"text": "\u1054"} // Value: ၔ
Python:
char = '\u1054'
print(char) # Output: ၔ
Perl:
my $char = "\x{1054}";
print $char; # Output: ၔ
PHP:
$char = "\x{1054}";
echo $char; // Output: ၔ
Ruby:
char = "\u{1054}"
puts char # Output: ၔ
Rust:
let c = '\u{1054}';
println!("{}", c); // Output: ၔ
Go:
char := '\u1054'
fmt.Printf("%c\n", char) // Output: ၔ
CSS:
/* CSS content property */
.element::before {
content: "\001054"; /* 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%94
MD5:
5069c15ee10045997cec35989897963b
SHA1:
f330c934bfed9c7f77f535e6ce1090ccc5e78603
Base64:
4YGU