C:
char c = '\u5700';
printf("%c\n", c); // Output: 圀
JavaScript:
const char = '\u5700';
console.log(char); // Output: 圀
Java:
char c = '\u5700';
System.out.println(c); // Output: 圀
JSON:
{"text": "\u5700"} // Value: 圀
Python:
char = '\u5700'
print(char) # Output: 圀
Perl:
my $char = "\x{5700}";
print $char; # Output: 圀
PHP:
$char = "\x{5700}";
echo $char; // Output: 圀
Ruby:
char = "\u{5700}"
puts char # Output: 圀
Rust:
let c = '\u{5700}';
println!("{}", c); // Output: 圀
Go:
char := '\u5700'
fmt.Printf("%c\n", char) // Output: 圀
CSS:
/* CSS content property */
.element::before {
content: "\005700"; /* 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%9C%80
MD5:
38f69f81df794893c8819cd8a0c003e4
SHA1:
d2cf2b8d322ff5477820485aa3debbf8c7185548
Base64:
5ZyA