C:
char c = '\u098B';
printf("%c\n", c); // Output: ঋ
JavaScript:
const char = '\u098B';
console.log(char); // Output: ঋ
Java:
char c = '\u098B';
System.out.println(c); // Output: ঋ
JSON:
{"text": "\u098B"} // Value: ঋ
Python:
char = '\u098B'
print(char) # Output: ঋ
Perl:
my $char = "\x{098B}";
print $char; # Output: ঋ
PHP:
$char = "\x{098B}";
echo $char; // Output: ঋ
Ruby:
char = "\u{098B}"
puts char # Output: ঋ
Rust:
let c = '\u{98B}';
println!("{}", c); // Output: ঋ
Go:
char := '\u098B'
fmt.Printf("%c\n", char) // Output: ঋ
CSS:
/* CSS content property */
.element::before {
content: "\00098B"; /* 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%8B
MD5:
bdf8c58ef6796c1eada674918b6ae8af
SHA1:
8becbc6e80fc9cf23f4243e5b1c93dc90fb47c61
Base64:
4KaL