C:
char c = '\u0900';
printf("%c\n", c); // Output: ऀ
JavaScript:
const char = '\u0900';
console.log(char); // Output: ऀ
Java:
char c = '\u0900';
System.out.println(c); // Output: ऀ
JSON:
{"text": "\u0900"} // Value: ऀ
Python:
char = '\u0900'
print(char) # Output: ऀ
Perl:
my $char = "\x{0900}";
print $char; # Output: ऀ
PHP:
$char = "\x{0900}";
echo $char; // Output: ऀ
Ruby:
char = "\u{0900}"
puts char # Output: ऀ
Rust:
let c = '\u{900}';
println!("{}", c); // Output: ऀ
Go:
char := '\u0900'
fmt.Printf("%c\n", char) // Output: ऀ
CSS:
/* CSS content property */
.element::before {
content: "\000900"; /* 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%80
MD5:
f35a3e12a1e94f0e5517c870e08e2501
SHA1:
1ac260e8976c8b4ae3ce487808d9257c22ca7f3a
Base64:
4KSA