C:
char c = '\u7417';
printf("%c\n", c); // Output: 琗
JavaScript:
const char = '\u7417';
console.log(char); // Output: 琗
Java:
char c = '\u7417';
System.out.println(c); // Output: 琗
JSON:
{"text": "\u7417"} // Value: 琗
Python:
char = '\u7417'
print(char) # Output: 琗
Perl:
my $char = "\x{7417}";
print $char; # Output: 琗
PHP:
$char = "\x{7417}";
echo $char; // Output: 琗
Ruby:
char = "\u{7417}"
puts char # Output: 琗
Rust:
let c = '\u{7417}';
println!("{}", c); // Output: 琗
Go:
char := '\u7417'
fmt.Printf("%c\n", char) // Output: 琗
CSS:
/* CSS content property */
.element::before {
content: "\007417"; /* 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%97
MD5:
f6e67418a4441e08951412e7e7518b26
SHA1:
52bb2217f9532935d11e3804647bee3fdf92e5a3
Base64:
55CX