C:
char c = '\u7427';
printf("%c\n", c); // Output: 琧
JavaScript:
const char = '\u7427';
console.log(char); // Output: 琧
Java:
char c = '\u7427';
System.out.println(c); // Output: 琧
JSON:
{"text": "\u7427"} // Value: 琧
Python:
char = '\u7427'
print(char) # Output: 琧
Perl:
my $char = "\x{7427}";
print $char; # Output: 琧
PHP:
$char = "\x{7427}";
echo $char; // Output: 琧
Ruby:
char = "\u{7427}"
puts char # Output: 琧
Rust:
let c = '\u{7427}';
println!("{}", c); // Output: 琧
Go:
char := '\u7427'
fmt.Printf("%c\n", char) // Output: 琧
CSS:
/* CSS content property */
.element::before {
content: "\007427"; /* 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%A7
MD5:
98e8e603779d21cba8c43e9ac9dcc888
SHA1:
39dba718bcb36717d62fa14ab6a042909e3bc564
Base64:
55Cn