C:
char c = '\u1E44';
printf("%c\n", c); // Output: Ṅ
JavaScript:
const char = '\u1E44';
console.log(char); // Output: Ṅ
Java:
char c = '\u1E44';
System.out.println(c); // Output: Ṅ
JSON:
{"text": "\u1E44"} // Value: Ṅ
Python:
char = '\u1E44'
print(char) # Output: Ṅ
Perl:
my $char = "\x{1E44}";
print $char; # Output: Ṅ
PHP:
$char = "\x{1E44}";
echo $char; // Output: Ṅ
Ruby:
char = "\u{1E44}"
puts char # Output: Ṅ
Rust:
let c = '\u{1E44}';
println!("{}", c); // Output: Ṅ
Go:
char := '\u1E44'
fmt.Printf("%c\n", char) // Output: Ṅ
CSS:
/* CSS content property */
.element::before {
content: "\001E44"; /* 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%B9%84
MD5:
460ec3af0659b71cd4383585f436d5af
SHA1:
6d6e3c1ef99ffe9790c58594cd57d34bf04b05ec
Base64:
4bmE