C:
char c = '\u0916';
printf("%c\n", c); // Output: ख
JavaScript:
const char = '\u0916';
console.log(char); // Output: ख
Java:
char c = '\u0916';
System.out.println(c); // Output: ख
JSON:
{"text": "\u0916"} // Value: ख
Python:
char = '\u0916'
print(char) # Output: ख
Perl:
my $char = "\x{0916}";
print $char; # Output: ख
PHP:
$char = "\x{0916}";
echo $char; // Output: ख
Ruby:
char = "\u{0916}"
puts char # Output: ख
Rust:
let c = '\u{916}';
println!("{}", c); // Output: ख
Go:
char := '\u0916'
fmt.Printf("%c\n", char) // Output: ख
CSS:
/* CSS content property */
.element::before {
content: "\000916"; /* 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%96
MD5:
9eafaecb7eb04ac6fda45940659ea87f
SHA1:
57294b4cbf36073498cdbac5d3baa39219f21de3
Base64:
4KSW