C:
char c = '\u1068';
printf("%c\n", c); // Output: ၨ
JavaScript:
const char = '\u1068';
console.log(char); // Output: ၨ
Java:
char c = '\u1068';
System.out.println(c); // Output: ၨ
JSON:
{"text": "\u1068"} // Value: ၨ
Python:
char = '\u1068'
print(char) # Output: ၨ
Perl:
my $char = "\x{1068}";
print $char; # Output: ၨ
PHP:
$char = "\x{1068}";
echo $char; // Output: ၨ
Ruby:
char = "\u{1068}"
puts char # Output: ၨ
Rust:
let c = '\u{1068}';
println!("{}", c); // Output: ၨ
Go:
char := '\u1068'
fmt.Printf("%c\n", char) // Output: ၨ
CSS:
/* CSS content property */
.element::before {
content: "\001068"; /* 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%A8
MD5:
644cc55e7a1f5148dbc8f10064a8c297
SHA1:
97a2d527613c8117e3904a1412457e483e481688
Base64:
4YGo