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