C:
char c = '\u0919';
printf("%c\n", c); // Output: ङ
JavaScript:
const char = '\u0919';
console.log(char); // Output: ङ
Java:
char c = '\u0919';
System.out.println(c); // Output: ङ
JSON:
{"text": "\u0919"} // Value: ङ
Python:
char = '\u0919'
print(char) # Output: ङ
Perl:
my $char = "\x{0919}";
print $char; # Output: ङ
PHP:
$char = "\x{0919}";
echo $char; // Output: ङ
Ruby:
char = "\u{0919}"
puts char # Output: ङ
Rust:
let c = '\u{919}';
println!("{}", c); // Output: ङ
Go:
char := '\u0919'
fmt.Printf("%c\n", char) // Output: ङ
CSS:
/* CSS content property */
.element::before {
content: "\000919"; /* 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=%E0%A4%99
MD5:
b09043d72dd0a6adf459c6a6b892e2ae
SHA1:
393bdf2034ff6d9497668e01a7e3642ea233fb0e
Base64:
4KSZ