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