C:
char c = '\u0997';
printf("%c\n", c); // Output: গ
JavaScript:
const char = '\u0997';
console.log(char); // Output: গ
Java:
char c = '\u0997';
System.out.println(c); // Output: গ
JSON:
{"text": "\u0997"} // Value: গ
Python:
char = '\u0997'
print(char) # Output: গ
Perl:
my $char = "\x{0997}";
print $char; # Output: গ
PHP:
$char = "\x{0997}";
echo $char; // Output: গ
Ruby:
char = "\u{0997}"
puts char # Output: গ
Rust:
let c = '\u{997}';
println!("{}", c); // Output: গ
Go:
char := '\u0997'
fmt.Printf("%c\n", char) // Output: গ
CSS:
/* CSS content property */
.element::before {
content: "\000997"; /* 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%97
MD5:
886781c43fa2f039fc068cf43a4cc681
SHA1:
c461fdd02c403e752598d9bdc82f9f2ab45f5925
Base64:
4KaX