C:
char c = '\u1782';
printf("%c\n", c); // Output: គ
JavaScript:
const char = '\u1782';
console.log(char); // Output: គ
Java:
char c = '\u1782';
System.out.println(c); // Output: គ
JSON:
{"text": "\u1782"} // Value: គ
Python:
char = '\u1782'
print(char) # Output: គ
Perl:
my $char = "\x{1782}";
print $char; # Output: គ
PHP:
$char = "\x{1782}";
echo $char; // Output: គ
Ruby:
char = "\u{1782}"
puts char # Output: គ
Rust:
let c = '\u{1782}';
println!("{}", c); // Output: គ
Go:
char := '\u1782'
fmt.Printf("%c\n", char) // Output: គ
CSS:
/* CSS content property */
.element::before {
content: "\001782"; /* 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=%E1%9E%82
MD5:
12faa60e076207ce74a5a329cbc9c15d
SHA1:
bb70d591ecea4e973d05692e306d4de29ce49ff6
Base64:
4Z6C