C:
char c = '\u09E6';
printf("%c\n", c); // Output: ০
JavaScript:
const char = '\u09E6';
console.log(char); // Output: ০
Java:
char c = '\u09E6';
System.out.println(c); // Output: ০
JSON:
{"text": "\u09E6"} // Value: ০
Python:
char = '\u09E6'
print(char) # Output: ০
Perl:
my $char = "\x{09E6}";
print $char; # Output: ০
PHP:
$char = "\x{09E6}";
echo $char; // Output: ০
Ruby:
char = "\u{09E6}"
puts char # Output: ০
Rust:
let c = '\u{9E6}';
println!("{}", c); // Output: ০
Go:
char := '\u09E6'
fmt.Printf("%c\n", char) // Output: ০
CSS:
/* CSS content property */
.element::before {
content: "\0009E6"; /* 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%A7%A6
MD5:
4e54bf6e123e0162ca258cdc1fc7de3b
SHA1:
a8fc6aedd9411582d4f2931fbeb5d6085a4fbe62
Base64:
4Kem