C:
char c = '\u5951';
printf("%c\n", c); // Output: 契
JavaScript:
const char = '\u5951';
console.log(char); // Output: 契
Java:
char c = '\u5951';
System.out.println(c); // Output: 契
JSON:
{"text": "\u5951"} // Value: 契
Python:
char = '\u5951'
print(char) # Output: 契
Perl:
my $char = "\x{5951}";
print $char; # Output: 契
PHP:
$char = "\x{5951}";
echo $char; // Output: 契
Ruby:
char = "\u{5951}"
puts char # Output: 契
Rust:
let c = '\u{5951}';
println!("{}", c); // Output: 契
Go:
char := '\u5951'
fmt.Printf("%c\n", char) // Output: 契
CSS:
/* CSS content property */
.element::before {
content: "\005951"; /* 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%A5%91
MD5:
fc2235160d87b9eed4c0f8e2dcee77e0
SHA1:
f2d36f60b3181da7c42c5e85195db3d745fe7d7f
Base64:
5aWR