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