C:
char c = '\u1073';
printf("%c\n", c); // Output: ၳ
JavaScript:
const char = '\u1073';
console.log(char); // Output: ၳ
Java:
char c = '\u1073';
System.out.println(c); // Output: ၳ
JSON:
{"text": "\u1073"} // Value: ၳ
Python:
char = '\u1073'
print(char) # Output: ၳ
Perl:
my $char = "\x{1073}";
print $char; # Output: ၳ
PHP:
$char = "\x{1073}";
echo $char; // Output: ၳ
Ruby:
char = "\u{1073}"
puts char # Output: ၳ
Rust:
let c = '\u{1073}';
println!("{}", c); // Output: ၳ
Go:
char := '\u1073'
fmt.Printf("%c\n", char) // Output: ၳ
CSS:
/* CSS content property */
.element::before {
content: "\001073"; /* 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%B3
MD5:
b4366c254945542823fd327b0375cb43
SHA1:
602ca18354ecc3ca04bd7918326645266f993410
Base64:
4YGz