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