C:
char c = '\u1069';
printf("%c\n", c); // Output: ၩ
JavaScript:
const char = '\u1069';
console.log(char); // Output: ၩ
Java:
char c = '\u1069';
System.out.println(c); // Output: ၩ
JSON:
{"text": "\u1069"} // Value: ၩ
Python:
char = '\u1069'
print(char) # Output: ၩ
Perl:
my $char = "\x{1069}";
print $char; # Output: ၩ
PHP:
$char = "\x{1069}";
echo $char; // Output: ၩ
Ruby:
char = "\u{1069}"
puts char # Output: ၩ
Rust:
let c = '\u{1069}';
println!("{}", c); // Output: ၩ
Go:
char := '\u1069'
fmt.Printf("%c\n", char) // Output: ၩ
CSS:
/* CSS content property */
.element::before {
content: "\001069"; /* 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%A9
MD5:
ae4c5dc0b3741c44b7cddb1125ae3a49
SHA1:
a8a96ef73faa083a9b192ed10bd71f5ab50eb463
Base64:
4YGp