C:
char c = '\u0926';
printf("%c\n", c); // Output: द
JavaScript:
const char = '\u0926';
console.log(char); // Output: द
Java:
char c = '\u0926';
System.out.println(c); // Output: द
JSON:
{"text": "\u0926"} // Value: द
Python:
char = '\u0926'
print(char) # Output: द
Perl:
my $char = "\x{0926}";
print $char; # Output: द
PHP:
$char = "\x{0926}";
echo $char; // Output: द
Ruby:
char = "\u{0926}"
puts char # Output: द
Rust:
let c = '\u{926}';
println!("{}", c); // Output: द
Go:
char := '\u0926'
fmt.Printf("%c\n", char) // Output: द
CSS:
/* CSS content property */
.element::before {
content: "\000926"; /* 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%A6
MD5:
fa55f9e2140bbec1da205eae2b201fbd
SHA1:
04a634b5dcdc59bdc6dab7b9e7c4f6abdc5c8366
Base64:
4KSm