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