C:
char c = '\u5565';
printf("%c\n", c); // Output: 啥
JavaScript:
const char = '\u5565';
console.log(char); // Output: 啥
Java:
char c = '\u5565';
System.out.println(c); // Output: 啥
JSON:
{"text": "\u5565"} // Value: 啥
Python:
char = '\u5565'
print(char) # Output: 啥
Perl:
my $char = "\x{5565}";
print $char; # Output: 啥
PHP:
$char = "\x{5565}";
echo $char; // Output: 啥
Ruby:
char = "\u{5565}"
puts char # Output: 啥
Rust:
let c = '\u{5565}';
println!("{}", c); // Output: 啥
Go:
char := '\u5565'
fmt.Printf("%c\n", char) // Output: 啥
CSS:
/* CSS content property */
.element::before {
content: "\005565"; /* 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%95%A5
MD5:
f0eba6539e9740e013596b625456fbf6
SHA1:
202909d84d004af6e62928abb0f43d6e7e86097f
Base64:
5ZWl