C:
char c = '\u5719';
printf("%c\n", c); // Output: 圙
JavaScript:
const char = '\u5719';
console.log(char); // Output: 圙
Java:
char c = '\u5719';
System.out.println(c); // Output: 圙
JSON:
{"text": "\u5719"} // Value: 圙
Python:
char = '\u5719'
print(char) # Output: 圙
Perl:
my $char = "\x{5719}";
print $char; # Output: 圙
PHP:
$char = "\x{5719}";
echo $char; // Output: 圙
Ruby:
char = "\u{5719}"
puts char # Output: 圙
Rust:
let c = '\u{5719}';
println!("{}", c); // Output: 圙
Go:
char := '\u5719'
fmt.Printf("%c\n", char) // Output: 圙
CSS:
/* CSS content property */
.element::before {
content: "\005719"; /* 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%99
MD5:
8d059c133889649537b6b317a30b1f8c
SHA1:
feb7fed1368d741427942245126b2d7b1e2b7779
Base64:
5ZyZ