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