C:
char c = '\u099A';
printf("%c\n", c); // Output: চ
JavaScript:
const char = '\u099A';
console.log(char); // Output: চ
Java:
char c = '\u099A';
System.out.println(c); // Output: চ
JSON:
{"text": "\u099A"} // Value: চ
Python:
char = '\u099A'
print(char) # Output: চ
Perl:
my $char = "\x{099A}";
print $char; # Output: চ
PHP:
$char = "\x{099A}";
echo $char; // Output: চ
Ruby:
char = "\u{099A}"
puts char # Output: চ
Rust:
let c = '\u{99A}';
println!("{}", c); // Output: চ
Go:
char := '\u099A'
fmt.Printf("%c\n", char) // Output: চ
CSS:
/* CSS content property */
.element::before {
content: "\00099A"; /* 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%A6%9A
MD5:
9f4a1ddea7528b63309272422591a122
SHA1:
0d3c8235758759aa84681ddd010e0f4cf0038b02
Base64:
4Kaa