C:
char c = '\u53D5';
printf("%c\n", c); // Output: 叕
JavaScript:
const char = '\u53D5';
console.log(char); // Output: 叕
Java:
char c = '\u53D5';
System.out.println(c); // Output: 叕
JSON:
{"text": "\u53D5"} // Value: 叕
Python:
char = '\u53D5'
print(char) # Output: 叕
Perl:
my $char = "\x{53D5}";
print $char; # Output: 叕
PHP:
$char = "\x{53D5}";
echo $char; // Output: 叕
Ruby:
char = "\u{53D5}"
puts char # Output: 叕
Rust:
let c = '\u{53D5}';
println!("{}", c); // Output: 叕
Go:
char := '\u53D5'
fmt.Printf("%c\n", char) // Output: 叕
CSS:
/* CSS content property */
.element::before {
content: "\0053D5"; /* 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%8F%95
MD5:
9ab501d9bbca728d962f4087d91fe6f4
SHA1:
d94714d6b63f85631e8cdf2dcdb2ec129f09894c
Base64:
5Y+V