C:
char c = '\u0990';
printf("%c\n", c); // Output: ঐ
JavaScript:
const char = '\u0990';
console.log(char); // Output: ঐ
Java:
char c = '\u0990';
System.out.println(c); // Output: ঐ
JSON:
{"text": "\u0990"} // Value: ঐ
Python:
char = '\u0990'
print(char) # Output: ঐ
Perl:
my $char = "\x{0990}";
print $char; # Output: ঐ
PHP:
$char = "\x{0990}";
echo $char; // Output: ঐ
Ruby:
char = "\u{0990}"
puts char # Output: ঐ
Rust:
let c = '\u{990}';
println!("{}", c); // Output: ঐ
Go:
char := '\u0990'
fmt.Printf("%c\n", char) // Output: ঐ
CSS:
/* CSS content property */
.element::before {
content: "\000990"; /* 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%90
MD5:
fcf7038a255c116e04f2c903c25256d0
SHA1:
9fa3ded88aaf6ab0bd2fe8813629480b2edd79b3
Base64:
4KaQ