C:
char c = '\u7422';
printf("%c\n", c); // Output: 琢
JavaScript:
const char = '\u7422';
console.log(char); // Output: 琢
Java:
char c = '\u7422';
System.out.println(c); // Output: 琢
JSON:
{"text": "\u7422"} // Value: 琢
Python:
char = '\u7422'
print(char) # Output: 琢
Perl:
my $char = "\x{7422}";
print $char; # Output: 琢
PHP:
$char = "\x{7422}";
echo $char; // Output: 琢
Ruby:
char = "\u{7422}"
puts char # Output: 琢
Rust:
let c = '\u{7422}';
println!("{}", c); // Output: 琢
Go:
char := '\u7422'
fmt.Printf("%c\n", char) // Output: 琢
CSS:
/* CSS content property */
.element::before {
content: "\007422"; /* 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%A2
MD5:
a0a02c16f68781e032251c88956b863d
SHA1:
5a5d91da1649478da5b2b8bfcf792db51ef6b07f
Base64:
55Ci