C:
char c = '\u0927';
printf("%c\n", c); // Output: ध
JavaScript:
const char = '\u0927';
console.log(char); // Output: ध
Java:
char c = '\u0927';
System.out.println(c); // Output: ध
JSON:
{"text": "\u0927"} // Value: ध
Python:
char = '\u0927'
print(char) # Output: ध
Perl:
my $char = "\x{0927}";
print $char; # Output: ध
PHP:
$char = "\x{0927}";
echo $char; // Output: ध
Ruby:
char = "\u{0927}"
puts char # Output: ध
Rust:
let c = '\u{927}';
println!("{}", c); // Output: ध
Go:
char := '\u0927'
fmt.Printf("%c\n", char) // Output: ध
CSS:
/* CSS content property */
.element::before {
content: "\000927"; /* 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%A7
MD5:
750a899c312ea2e4f170832ea9027dd9
SHA1:
34fe8af1726529ce32781e88bbc08f901c8e7634
Base64:
4KSn