C:
char c = '\u5731';
printf("%c\n", c); // Output: 圱
JavaScript:
const char = '\u5731';
console.log(char); // Output: 圱
Java:
char c = '\u5731';
System.out.println(c); // Output: 圱
JSON:
{"text": "\u5731"} // Value: 圱
Python:
char = '\u5731'
print(char) # Output: 圱
Perl:
my $char = "\x{5731}";
print $char; # Output: 圱
PHP:
$char = "\x{5731}";
echo $char; // Output: 圱
Ruby:
char = "\u{5731}"
puts char # Output: 圱
Rust:
let c = '\u{5731}';
println!("{}", c); // Output: 圱
Go:
char := '\u5731'
fmt.Printf("%c\n", char) // Output: 圱
CSS:
/* CSS content property */
.element::before {
content: "\005731"; /* 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%B1
MD5:
dd3f2857c462547a136d4da337c49d5e
SHA1:
166ba2c1a4530182330c8545f18683ceb2b50a6d
Base64:
5Zyx