C:
char c = '\u1053';
printf("%c\n", c); // Output: ၓ
JavaScript:
const char = '\u1053';
console.log(char); // Output: ၓ
Java:
char c = '\u1053';
System.out.println(c); // Output: ၓ
JSON:
{"text": "\u1053"} // Value: ၓ
Python:
char = '\u1053'
print(char) # Output: ၓ
Perl:
my $char = "\x{1053}";
print $char; # Output: ၓ
PHP:
$char = "\x{1053}";
echo $char; // Output: ၓ
Ruby:
char = "\u{1053}"
puts char # Output: ၓ
Rust:
let c = '\u{1053}';
println!("{}", c); // Output: ၓ
Go:
char := '\u1053'
fmt.Printf("%c\n", char) // Output: ၓ
CSS:
/* CSS content property */
.element::before {
content: "\001053"; /* 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%93
MD5:
61e7ca87808d8e8c288f4243e54a73c9
SHA1:
eb24b32ab095964727f543766f3be81ec9c77f11
Base64:
4YGT