C:
char c = '\u7504';
printf("%c\n", c); // Output: 甄
JavaScript:
const char = '\u7504';
console.log(char); // Output: 甄
Java:
char c = '\u7504';
System.out.println(c); // Output: 甄
JSON:
{"text": "\u7504"} // Value: 甄
Python:
char = '\u7504'
print(char) # Output: 甄
Perl:
my $char = "\x{7504}";
print $char; # Output: 甄
PHP:
$char = "\x{7504}";
echo $char; // Output: 甄
Ruby:
char = "\u{7504}"
puts char # Output: 甄
Rust:
let c = '\u{7504}';
println!("{}", c); // Output: 甄
Go:
char := '\u7504'
fmt.Printf("%c\n", char) // Output: 甄
CSS:
/* CSS content property */
.element::before {
content: "\007504"; /* 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%94%84
MD5:
b1ef2270a60e6596787d77711747d064
SHA1:
d45aa3e0e175039d8135610fbc5ebcf283c17725
Base64:
55SE