C:
char c = '\u7501';
printf("%c\n", c); // Output: 甁
JavaScript:
const char = '\u7501';
console.log(char); // Output: 甁
Java:
char c = '\u7501';
System.out.println(c); // Output: 甁
JSON:
{"text": "\u7501"} // Value: 甁
Python:
char = '\u7501'
print(char) # Output: 甁
Perl:
my $char = "\x{7501}";
print $char; # Output: 甁
PHP:
$char = "\x{7501}";
echo $char; // Output: 甁
Ruby:
char = "\u{7501}"
puts char # Output: 甁
Rust:
let c = '\u{7501}';
println!("{}", c); // Output: 甁
Go:
char := '\u7501'
fmt.Printf("%c\n", char) // Output: 甁
CSS:
/* CSS content property */
.element::before {
content: "\007501"; /* 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%81
MD5:
0a782102f7d8f5cccbb986bdc96e0a0a
SHA1:
bf47c159bed9d4bc682021002598a9a78b7182a8
Base64:
55SB