C:
char c = '\u5E6E';
printf("%c\n", c); // Output: 幮
JavaScript:
const char = '\u5E6E';
console.log(char); // Output: 幮
Java:
char c = '\u5E6E';
System.out.println(c); // Output: 幮
JSON:
{"text": "\u5E6E"} // Value: 幮
Python:
char = '\u5E6E'
print(char) # Output: 幮
Perl:
my $char = "\x{5E6E}";
print $char; # Output: 幮
PHP:
$char = "\x{5E6E}";
echo $char; // Output: 幮
Ruby:
char = "\u{5E6E}"
puts char # Output: 幮
Rust:
let c = '\u{5E6E}';
println!("{}", c); // Output: 幮
Go:
char := '\u5E6E'
fmt.Printf("%c\n", char) // Output: 幮
CSS:
/* CSS content property */
.element::before {
content: "\005E6E"; /* 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=%E5%B9%AE
MD5:
6579094afb2f8bf55e2e43ca579740b1
SHA1:
ef062c790a08500a57949aaeac2b907e19748e0d
Base64:
5bmu