C:
char c = '\u7412';
printf("%c\n", c); // Output: 琒
JavaScript:
const char = '\u7412';
console.log(char); // Output: 琒
Java:
char c = '\u7412';
System.out.println(c); // Output: 琒
JSON:
{"text": "\u7412"} // Value: 琒
Python:
char = '\u7412'
print(char) # Output: 琒
Perl:
my $char = "\x{7412}";
print $char; # Output: 琒
PHP:
$char = "\x{7412}";
echo $char; // Output: 琒
Ruby:
char = "\u{7412}"
puts char # Output: 琒
Rust:
let c = '\u{7412}';
println!("{}", c); // Output: 琒
Go:
char := '\u7412'
fmt.Printf("%c\n", char) // Output: 琒
CSS:
/* CSS content property */
.element::before {
content: "\007412"; /* 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%92
MD5:
95c3857e25fae99fedfa40842db854c5
SHA1:
e3af37ddf91d69a176e0c7a7a4fecb0711e3b38d
Base64:
55CS