C:
char c = '\u8FAE';
printf("%c\n", c); // Output: 辮
JavaScript:
const char = '\u8FAE';
console.log(char); // Output: 辮
Java:
char c = '\u8FAE';
System.out.println(c); // Output: 辮
JSON:
{"text": "\u8FAE"} // Value: 辮
Python:
char = '\u8FAE'
print(char) # Output: 辮
Perl:
my $char = "\x{8FAE}";
print $char; # Output: 辮
PHP:
$char = "\x{8FAE}";
echo $char; // Output: 辮
Ruby:
char = "\u{8FAE}"
puts char # Output: 辮
Rust:
let c = '\u{8FAE}';
println!("{}", c); // Output: 辮
Go:
char := '\u8FAE'
fmt.Printf("%c\n", char) // Output: 辮
CSS:
/* CSS content property */
.element::before {
content: "\008FAE"; /* 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%BE%AE
MD5:
e3e8e567bf1a7bde2a3f832346f60b05
SHA1:
51ec199f00ea909269f0cc16797d985a4fac0951
Base64:
6L6u