C:
char c = '\u1799';
printf("%c\n", c); // Output: យ
JavaScript:
const char = '\u1799';
console.log(char); // Output: យ
Java:
char c = '\u1799';
System.out.println(c); // Output: យ
JSON:
{"text": "\u1799"} // Value: យ
Python:
char = '\u1799'
print(char) # Output: យ
Perl:
my $char = "\x{1799}";
print $char; # Output: យ
PHP:
$char = "\x{1799}";
echo $char; // Output: យ
Ruby:
char = "\u{1799}"
puts char # Output: យ
Rust:
let c = '\u{1799}';
println!("{}", c); // Output: យ
Go:
char := '\u1799'
fmt.Printf("%c\n", char) // Output: យ
CSS:
/* CSS content property */
.element::before {
content: "\001799"; /* 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%99
MD5:
56ff22db64df337221017d52980b3e9d
SHA1:
6ef4f35996436115c348a70bea47c1b5c87b6a91
Base64:
4Z6Z