C:
char c = '\u7418';
printf("%c\n", c); // Output: 琘
JavaScript:
const char = '\u7418';
console.log(char); // Output: 琘
Java:
char c = '\u7418';
System.out.println(c); // Output: 琘
JSON:
{"text": "\u7418"} // Value: 琘
Python:
char = '\u7418'
print(char) # Output: 琘
Perl:
my $char = "\x{7418}";
print $char; # Output: 琘
PHP:
$char = "\x{7418}";
echo $char; // Output: 琘
Ruby:
char = "\u{7418}"
puts char # Output: 琘
Rust:
let c = '\u{7418}';
println!("{}", c); // Output: 琘
Go:
char := '\u7418'
fmt.Printf("%c\n", char) // Output: 琘
CSS:
/* CSS content property */
.element::before {
content: "\007418"; /* 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%90%98
MD5:
946d000583eb126203449c6a6a59d680
SHA1:
c6f1ef1e302984a020755d494679b9950d364823
Base64:
55CY