C:
char c = '\u95A4';
printf("%c\n", c); // Output: 閤
JavaScript:
const char = '\u95A4';
console.log(char); // Output: 閤
Java:
char c = '\u95A4';
System.out.println(c); // Output: 閤
JSON:
{"text": "\u95A4"} // Value: 閤
Python:
char = '\u95A4'
print(char) # Output: 閤
Perl:
my $char = "\x{95A4}";
print $char; # Output: 閤
PHP:
$char = "\x{95A4}";
echo $char; // Output: 閤
Ruby:
char = "\u{95A4}"
puts char # Output: 閤
Rust:
let c = '\u{95A4}';
println!("{}", c); // Output: 閤
Go:
char := '\u95A4'
fmt.Printf("%c\n", char) // Output: 閤
CSS:
/* CSS content property */
.element::before {
content: "\0095A4"; /* 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%A4
MD5:
3d2eb35ed675dd2a503d82a58e91f827
SHA1:
fb1aa736e566bc705a35cb5088bb75ed7c4e974b
Base64:
6Zak