C:
char c = '\u091C';
printf("%c\n", c); // Output: ज
JavaScript:
const char = '\u091C';
console.log(char); // Output: ज
Java:
char c = '\u091C';
System.out.println(c); // Output: ज
JSON:
{"text": "\u091C"} // Value: ज
Python:
char = '\u091C'
print(char) # Output: ज
Perl:
my $char = "\x{091C}";
print $char; # Output: ज
PHP:
$char = "\x{091C}";
echo $char; // Output: ज
Ruby:
char = "\u{091C}"
puts char # Output: ज
Rust:
let c = '\u{91C}';
println!("{}", c); // Output: ज
Go:
char := '\u091C'
fmt.Printf("%c\n", char) // Output: ज
CSS:
/* CSS content property */
.element::before {
content: "\00091C"; /* 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%9C
MD5:
3fbc5adc0c789607ee71011518441568
SHA1:
94294cd4f2013acbe01e0698d16b5841e1a64974
Base64:
4KSc