C:
char c = '\u0905';
printf("%c\n", c); // Output: अ
JavaScript:
const char = '\u0905';
console.log(char); // Output: अ
Java:
char c = '\u0905';
System.out.println(c); // Output: अ
JSON:
{"text": "\u0905"} // Value: अ
Python:
char = '\u0905'
print(char) # Output: अ
Perl:
my $char = "\x{0905}";
print $char; # Output: अ
PHP:
$char = "\x{0905}";
echo $char; // Output: अ
Ruby:
char = "\u{0905}"
puts char # Output: अ
Rust:
let c = '\u{905}';
println!("{}", c); // Output: अ
Go:
char := '\u0905'
fmt.Printf("%c\n", char) // Output: अ
CSS:
/* CSS content property */
.element::before {
content: "\000905"; /* 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%85
MD5:
7c4dc558e0272606da797113d7a960d0
SHA1:
ea5a10dbbce9bb9d2a399d51e2433e7bf4e69657
Base64:
4KSF