C:
char c = '\u0910';
printf("%c\n", c); // Output: ऐ
JavaScript:
const char = '\u0910';
console.log(char); // Output: ऐ
Java:
char c = '\u0910';
System.out.println(c); // Output: ऐ
JSON:
{"text": "\u0910"} // Value: ऐ
Python:
char = '\u0910'
print(char) # Output: ऐ
Perl:
my $char = "\x{0910}";
print $char; # Output: ऐ
PHP:
$char = "\x{0910}";
echo $char; // Output: ऐ
Ruby:
char = "\u{0910}"
puts char # Output: ऐ
Rust:
let c = '\u{910}';
println!("{}", c); // Output: ऐ
Go:
char := '\u0910'
fmt.Printf("%c\n", char) // Output: ऐ
CSS:
/* CSS content property */
.element::before {
content: "\000910"; /* 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%90
MD5:
08200c18b09c7e19d76ec5a36c0ab1ff
SHA1:
7f8e0ebf9dc82b3126b73112314515720d1e46a1
Base64:
4KSQ