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