C:
char c = '\u0906';
printf("%c\n", c); // Output: आ
JavaScript:
const char = '\u0906';
console.log(char); // Output: आ
Java:
char c = '\u0906';
System.out.println(c); // Output: आ
JSON:
{"text": "\u0906"} // Value: आ
Python:
char = '\u0906'
print(char) # Output: आ
Perl:
my $char = "\x{0906}";
print $char; # Output: आ
PHP:
$char = "\x{0906}";
echo $char; // Output: आ
Ruby:
char = "\u{0906}"
puts char # Output: आ
Rust:
let c = '\u{906}';
println!("{}", c); // Output: आ
Go:
char := '\u0906'
fmt.Printf("%c\n", char) // Output: आ
CSS:
/* CSS content property */
.element::before {
content: "\000906"; /* 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%86
MD5:
ddf4f7f426fcbb6f3bae50c8d7af675f
SHA1:
fbffbdb7e1b8a15b5a590d5056b6dfaf15340743
Base64:
4KSG