C:
char c = '\u5359';
printf("%c\n", c); // Output: 卙
JavaScript:
const char = '\u5359';
console.log(char); // Output: 卙
Java:
char c = '\u5359';
System.out.println(c); // Output: 卙
JSON:
{"text": "\u5359"} // Value: 卙
Python:
char = '\u5359'
print(char) # Output: 卙
Perl:
my $char = "\x{5359}";
print $char; # Output: 卙
PHP:
$char = "\x{5359}";
echo $char; // Output: 卙
Ruby:
char = "\u{5359}"
puts char # Output: 卙
Rust:
let c = '\u{5359}';
println!("{}", c); // Output: 卙
Go:
char := '\u5359'
fmt.Printf("%c\n", char) // Output: 卙
CSS:
/* CSS content property */
.element::before {
content: "\005359"; /* 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%99
MD5:
278b1da8204c87876674d23f70175a87
SHA1:
53d16bf508af08147a51c21a06f2780a12c058cf
Base64:
5Y2Z