C:
char c = '\u1014';
printf("%c\n", c); // Output: န
JavaScript:
const char = '\u1014';
console.log(char); // Output: န
Java:
char c = '\u1014';
System.out.println(c); // Output: န
JSON:
{"text": "\u1014"} // Value: န
Python:
char = '\u1014'
print(char) # Output: န
Perl:
my $char = "\x{1014}";
print $char; # Output: န
PHP:
$char = "\x{1014}";
echo $char; // Output: န
Ruby:
char = "\u{1014}"
puts char # Output: န
Rust:
let c = '\u{1014}';
println!("{}", c); // Output: န
Go:
char := '\u1014'
fmt.Printf("%c\n", char) // Output: န
CSS:
/* CSS content property */
.element::before {
content: "\001014"; /* 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%80%94
MD5:
308850fb6c4060e8d73a8e404d56b335
SHA1:
40dad3c907db5439cc6cc4aa1eb8d8ede3e043e7
Base64:
4YCU