C:
char c = '\u8E5C';
printf("%c\n", c); // Output: 蹜
JavaScript:
const char = '\u8E5C';
console.log(char); // Output: 蹜
Java:
char c = '\u8E5C';
System.out.println(c); // Output: 蹜
JSON:
{"text": "\u8E5C"} // Value: 蹜
Python:
char = '\u8E5C'
print(char) # Output: 蹜
Perl:
my $char = "\x{8E5C}";
print $char; # Output: 蹜
PHP:
$char = "\x{8E5C}";
echo $char; // Output: 蹜
Ruby:
char = "\u{8E5C}"
puts char # Output: 蹜
Rust:
let c = '\u{8E5C}';
println!("{}", c); // Output: 蹜
Go:
char := '\u8E5C'
fmt.Printf("%c\n", char) // Output: 蹜
CSS:
/* CSS content property */
.element::before {
content: "\008E5C"; /* 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=%E8%B9%9C
MD5:
e26f642529069f05a7e877c06638262e
SHA1:
3dc00aa2031e4905bf09f14f0bfabd45a8e6e758
Base64:
6Lmc