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