C:
char c = '\u7400';
printf("%c\n", c); // Output: 琀
JavaScript:
const char = '\u7400';
console.log(char); // Output: 琀
Java:
char c = '\u7400';
System.out.println(c); // Output: 琀
JSON:
{"text": "\u7400"} // Value: 琀
Python:
char = '\u7400'
print(char) # Output: 琀
Perl:
my $char = "\x{7400}";
print $char; # Output: 琀
PHP:
$char = "\x{7400}";
echo $char; // Output: 琀
Ruby:
char = "\u{7400}"
puts char # Output: 琀
Rust:
let c = '\u{7400}';
println!("{}", c); // Output: 琀
Go:
char := '\u7400'
fmt.Printf("%c\n", char) // Output: 琀
CSS:
/* CSS content property */
.element::before {
content: "\007400"; /* 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%80
MD5:
671d265d0d4f167d26534d3fb695509a
SHA1:
7a6d567ba0f0efe62786997c1ec0d2832af4234d
Base64:
55CA