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