C:
char c = '\u1061';
printf("%c\n", c); // Output: ၡ
JavaScript:
const char = '\u1061';
console.log(char); // Output: ၡ
Java:
char c = '\u1061';
System.out.println(c); // Output: ၡ
JSON:
{"text": "\u1061"} // Value: ၡ
Python:
char = '\u1061'
print(char) # Output: ၡ
Perl:
my $char = "\x{1061}";
print $char; # Output: ၡ
PHP:
$char = "\x{1061}";
echo $char; // Output: ၡ
Ruby:
char = "\u{1061}"
puts char # Output: ၡ
Rust:
let c = '\u{1061}';
println!("{}", c); // Output: ၡ
Go:
char := '\u1061'
fmt.Printf("%c\n", char) // Output: ၡ
CSS:
/* CSS content property */
.element::before {
content: "\001061"; /* 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%A1
MD5:
6c55eeaaa70240aed48e8ee182d42547
SHA1:
1c224934714b41c90b565987fc285380c43b34d5
Base64:
4YGh