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