C:
char c = '\u5DF5';
printf("%c\n", c); // Output: 巵
JavaScript:
const char = '\u5DF5';
console.log(char); // Output: 巵
Java:
char c = '\u5DF5';
System.out.println(c); // Output: 巵
JSON:
{"text": "\u5DF5"} // Value: 巵
Python:
char = '\u5DF5'
print(char) # Output: 巵
Perl:
my $char = "\x{5DF5}";
print $char; # Output: 巵
PHP:
$char = "\x{5DF5}";
echo $char; // Output: 巵
Ruby:
char = "\u{5DF5}"
puts char # Output: 巵
Rust:
let c = '\u{5DF5}';
println!("{}", c); // Output: 巵
Go:
char := '\u5DF5'
fmt.Printf("%c\n", char) // Output: 巵
CSS:
/* CSS content property */
.element::before {
content: "\005DF5"; /* 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%B7%B5
MD5:
2ce929545fcbe058574c3378270444e0
SHA1:
52d1b4b32ce2155b6ef6754680d67e2d2b4c0d2e
Base64:
5be1