C:
char c = '\u5704';
printf("%c\n", c); // Output: 圄
JavaScript:
const char = '\u5704';
console.log(char); // Output: 圄
Java:
char c = '\u5704';
System.out.println(c); // Output: 圄
JSON:
{"text": "\u5704"} // Value: 圄
Python:
char = '\u5704'
print(char) # Output: 圄
Perl:
my $char = "\x{5704}";
print $char; # Output: 圄
PHP:
$char = "\x{5704}";
echo $char; // Output: 圄
Ruby:
char = "\u{5704}"
puts char # Output: 圄
Rust:
let c = '\u{5704}';
println!("{}", c); // Output: 圄
Go:
char := '\u5704'
fmt.Printf("%c\n", char) // Output: 圄
CSS:
/* CSS content property */
.element::before {
content: "\005704"; /* 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%84
MD5:
580ae17b9115662716a5ebe70ad761ca
SHA1:
aad7a096bd4ebe97c523449636f8d7f18d12b96f
Base64:
5ZyE