C:
char c = '\u0914';
printf("%c\n", c); // Output: औ
JavaScript:
const char = '\u0914';
console.log(char); // Output: औ
Java:
char c = '\u0914';
System.out.println(c); // Output: औ
JSON:
{"text": "\u0914"} // Value: औ
Python:
char = '\u0914'
print(char) # Output: औ
Perl:
my $char = "\x{0914}";
print $char; # Output: औ
PHP:
$char = "\x{0914}";
echo $char; // Output: औ
Ruby:
char = "\u{0914}"
puts char # Output: औ
Rust:
let c = '\u{914}';
println!("{}", c); // Output: औ
Go:
char := '\u0914'
fmt.Printf("%c\n", char) // Output: औ
CSS:
/* CSS content property */
.element::before {
content: "\000914"; /* 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%94
MD5:
ab6b1674ed6905bc156bc3e22803676b
SHA1:
6c2324664c4f92e14fc768e49dbd3b6740a32822
Base64:
4KSU