C:
char c = '\u0999';
printf("%c\n", c); // Output: ঙ
JavaScript:
const char = '\u0999';
console.log(char); // Output: ঙ
Java:
char c = '\u0999';
System.out.println(c); // Output: ঙ
JSON:
{"text": "\u0999"} // Value: ঙ
Python:
char = '\u0999'
print(char) # Output: ঙ
Perl:
my $char = "\x{0999}";
print $char; # Output: ঙ
PHP:
$char = "\x{0999}";
echo $char; // Output: ঙ
Ruby:
char = "\u{0999}"
puts char # Output: ঙ
Rust:
let c = '\u{999}';
println!("{}", c); // Output: ঙ
Go:
char := '\u0999'
fmt.Printf("%c\n", char) // Output: ঙ
CSS:
/* CSS content property */
.element::before {
content: "\000999"; /* 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%99
MD5:
21330c96dcd7bf19203e9698ad07739f
SHA1:
2a4fdb4014cdd88ce2aef1fc7f621ab51ca934ba
Base64:
4KaZ