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