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