C:
char c = '\u1046';
printf("%c\n", c); // Output: ၆
JavaScript:
const char = '\u1046';
console.log(char); // Output: ၆
Java:
char c = '\u1046';
System.out.println(c); // Output: ၆
JSON:
{"text": "\u1046"} // Value: ၆
Python:
char = '\u1046'
print(char) # Output: ၆
Perl:
my $char = "\x{1046}";
print $char; # Output: ၆
PHP:
$char = "\x{1046}";
echo $char; // Output: ၆
Ruby:
char = "\u{1046}"
puts char # Output: ၆
Rust:
let c = '\u{1046}';
println!("{}", c); // Output: ၆
Go:
char := '\u1046'
fmt.Printf("%c\n", char) // Output: ၆
CSS:
/* CSS content property */
.element::before {
content: "\001046"; /* 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%86
MD5:
014e9c0a81f49f90924b9b9b506c96ac
SHA1:
e54ab09316b9d4e078e421aee94887554d247e16
Base64:
4YGG