C:
char c = '\u9598';
printf("%c\n", c); // Output: 閘
JavaScript:
const char = '\u9598';
console.log(char); // Output: 閘
Java:
char c = '\u9598';
System.out.println(c); // Output: 閘
JSON:
{"text": "\u9598"} // Value: 閘
Python:
char = '\u9598'
print(char) # Output: 閘
Perl:
my $char = "\x{9598}";
print $char; # Output: 閘
PHP:
$char = "\x{9598}";
echo $char; // Output: 閘
Ruby:
char = "\u{9598}"
puts char # Output: 閘
Rust:
let c = '\u{9598}';
println!("{}", c); // Output: 閘
Go:
char := '\u9598'
fmt.Printf("%c\n", char) // Output: 閘
CSS:
/* CSS content property */
.element::before {
content: "\009598"; /* 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=%E9%96%98
MD5:
9544c7379644c8de61acc7c583c097bc
SHA1:
0fd0e83778809a03316d54823c30a6dd9622dc08
Base64:
6ZaY