C:
char c = '\u1784';
printf("%c\n", c); // Output: ង
JavaScript:
const char = '\u1784';
console.log(char); // Output: ង
Java:
char c = '\u1784';
System.out.println(c); // Output: ង
JSON:
{"text": "\u1784"} // Value: ង
Python:
char = '\u1784'
print(char) # Output: ង
Perl:
my $char = "\x{1784}";
print $char; # Output: ង
PHP:
$char = "\x{1784}";
echo $char; // Output: ង
Ruby:
char = "\u{1784}"
puts char # Output: ង
Rust:
let c = '\u{1784}';
println!("{}", c); // Output: ង
Go:
char := '\u1784'
fmt.Printf("%c\n", char) // Output: ង
CSS:
/* CSS content property */
.element::before {
content: "\001784"; /* 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%84
MD5:
82cc32b439d111b77af22a23a3230ffc
SHA1:
817d876a018f0c54ec060bc0fcadae530ca3af6f
Base64:
4Z6E