C:
char c = '\u7519';
printf("%c\n", c); // Output: 甙
JavaScript:
const char = '\u7519';
console.log(char); // Output: 甙
Java:
char c = '\u7519';
System.out.println(c); // Output: 甙
JSON:
{"text": "\u7519"} // Value: 甙
Python:
char = '\u7519'
print(char) # Output: 甙
Perl:
my $char = "\x{7519}";
print $char; # Output: 甙
PHP:
$char = "\x{7519}";
echo $char; // Output: 甙
Ruby:
char = "\u{7519}"
puts char # Output: 甙
Rust:
let c = '\u{7519}';
println!("{}", c); // Output: 甙
Go:
char := '\u7519'
fmt.Printf("%c\n", char) // Output: 甙
CSS:
/* CSS content property */
.element::before {
content: "\007519"; /* 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%99
MD5:
b4bfbeca81595dd9bf890a8e591c9db6
SHA1:
d72675643f448dfce3f4384ddb5f5af19cc92908
Base64:
55SZ