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