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