C:
char c = '\u5957';
printf("%c\n", c); // Output: 套
JavaScript:
const char = '\u5957';
console.log(char); // Output: 套
Java:
char c = '\u5957';
System.out.println(c); // Output: 套
JSON:
{"text": "\u5957"} // Value: 套
Python:
char = '\u5957'
print(char) # Output: 套
Perl:
my $char = "\x{5957}";
print $char; # Output: 套
PHP:
$char = "\x{5957}";
echo $char; // Output: 套
Ruby:
char = "\u{5957}"
puts char # Output: 套
Rust:
let c = '\u{5957}';
println!("{}", c); // Output: 套
Go:
char := '\u5957'
fmt.Printf("%c\n", char) // Output: 套
CSS:
/* CSS content property */
.element::before {
content: "\005957"; /* 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%A5%97
MD5:
7ac6cc82d06be365952207c9edf0fec3
SHA1:
032231d845f8532df58576b3e258ba26c2cc3dee
Base64:
5aWX