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