C:
char c = '\u7459';
printf("%c\n", c); // Output: 瑙
JavaScript:
const char = '\u7459';
console.log(char); // Output: 瑙
Java:
char c = '\u7459';
System.out.println(c); // Output: 瑙
JSON:
{"text": "\u7459"} // Value: 瑙
Python:
char = '\u7459'
print(char) # Output: 瑙
Perl:
my $char = "\x{7459}";
print $char; # Output: 瑙
PHP:
$char = "\x{7459}";
echo $char; // Output: 瑙
Ruby:
char = "\u{7459}"
puts char # Output: 瑙
Rust:
let c = '\u{7459}';
println!("{}", c); // Output: 瑙
Go:
char := '\u7459'
fmt.Printf("%c\n", char) // Output: 瑙
CSS:
/* CSS content property */
.element::before {
content: "\007459"; /* 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=%E7%91%99
MD5:
2396ba3b44e9c8e20b7fa8c11c2b7024
SHA1:
9cae3f8e65a1e4c32d5f57bb195c17da82e6a088
Base64:
55GZ