C:
char c = '\u0921';
printf("%c\n", c); // Output: ड
JavaScript:
const char = '\u0921';
console.log(char); // Output: ड
Java:
char c = '\u0921';
System.out.println(c); // Output: ड
JSON:
{"text": "\u0921"} // Value: ड
Python:
char = '\u0921'
print(char) # Output: ड
Perl:
my $char = "\x{0921}";
print $char; # Output: ड
PHP:
$char = "\x{0921}";
echo $char; // Output: ड
Ruby:
char = "\u{0921}"
puts char # Output: ड
Rust:
let c = '\u{921}';
println!("{}", c); // Output: ड
Go:
char := '\u0921'
fmt.Printf("%c\n", char) // Output: ड
CSS:
/* CSS content property */
.element::before {
content: "\000921"; /* 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%A1
MD5:
6aece2a6a078cd7dcf15cca26b9d0bd8
SHA1:
3f651ec50f8986617943ac7996e31317db68bd48
Base64:
4KSh