C:
char c = '\u1789';
printf("%c\n", c); // Output: ញ
JavaScript:
const char = '\u1789';
console.log(char); // Output: ញ
Java:
char c = '\u1789';
System.out.println(c); // Output: ញ
JSON:
{"text": "\u1789"} // Value: ញ
Python:
char = '\u1789'
print(char) # Output: ញ
Perl:
my $char = "\x{1789}";
print $char; # Output: ញ
PHP:
$char = "\x{1789}";
echo $char; // Output: ញ
Ruby:
char = "\u{1789}"
puts char # Output: ញ
Rust:
let c = '\u{1789}';
println!("{}", c); // Output: ញ
Go:
char := '\u1789'
fmt.Printf("%c\n", char) // Output: ញ
CSS:
/* CSS content property */
.element::before {
content: "\001789"; /* 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%9E%89
MD5:
9ed9d85c29ca8bab4c00b37bbcc8b1eb
SHA1:
3eae4ce471b67e3527d6e3186e58907eedc7c729
Base64:
4Z6J