C:
char c = '\u0922';
printf("%c\n", c); // Output: ढ
JavaScript:
const char = '\u0922';
console.log(char); // Output: ढ
Java:
char c = '\u0922';
System.out.println(c); // Output: ढ
JSON:
{"text": "\u0922"} // Value: ढ
Python:
char = '\u0922'
print(char) # Output: ढ
Perl:
my $char = "\x{0922}";
print $char; # Output: ढ
PHP:
$char = "\x{0922}";
echo $char; // Output: ढ
Ruby:
char = "\u{0922}"
puts char # Output: ढ
Rust:
let c = '\u{922}';
println!("{}", c); // Output: ढ
Go:
char := '\u0922'
fmt.Printf("%c\n", char) // Output: ढ
CSS:
/* CSS content property */
.element::before {
content: "\000922"; /* 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%A2
MD5:
ebdcfab6c58dd1053b7dcc12d3eda611
SHA1:
c964e6351d741b5fbba799c83c2b56ee4fe2a26d
Base64:
4KSi