C:
char c = '\u5377';
printf("%c\n", c); // Output: 卷
JavaScript:
const char = '\u5377';
console.log(char); // Output: 卷
Java:
char c = '\u5377';
System.out.println(c); // Output: 卷
JSON:
{"text": "\u5377"} // Value: 卷
Python:
char = '\u5377'
print(char) # Output: 卷
Perl:
my $char = "\x{5377}";
print $char; # Output: 卷
PHP:
$char = "\x{5377}";
echo $char; // Output: 卷
Ruby:
char = "\u{5377}"
puts char # Output: 卷
Rust:
let c = '\u{5377}';
println!("{}", c); // Output: 卷
Go:
char := '\u5377'
fmt.Printf("%c\n", char) // Output: 卷
CSS:
/* CSS content property */
.element::before {
content: "\005377"; /* 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%8D%B7
MD5:
7088e18ac923d385adbf143d41783b06
SHA1:
a7b8833d1268210fdd2e426a6764f142f8d01373
Base64:
5Y23