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