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