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