C:
char c = '\u5722';
printf("%c\n", c); // Output: 圢
JavaScript:
const char = '\u5722';
console.log(char); // Output: 圢
Java:
char c = '\u5722';
System.out.println(c); // Output: 圢
JSON:
{"text": "\u5722"} // Value: 圢
Python:
char = '\u5722'
print(char) # Output: 圢
Perl:
my $char = "\x{5722}";
print $char; # Output: 圢
PHP:
$char = "\x{5722}";
echo $char; // Output: 圢
Ruby:
char = "\u{5722}"
puts char # Output: 圢
Rust:
let c = '\u{5722}';
println!("{}", c); // Output: 圢
Go:
char := '\u5722'
fmt.Printf("%c\n", char) // Output: 圢
CSS:
/* CSS content property */
.element::before {
content: "\005722"; /* 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%A2
MD5:
a04a74d1bd5e81085647e446413ef6d7
SHA1:
a6c56e24a66590bfd584ba53fc7d9bfa9d8eb2be
Base64:
5Zyi