C:
char c = '\u570A';
printf("%c\n", c); // Output: 圊
JavaScript:
const char = '\u570A';
console.log(char); // Output: 圊
Java:
char c = '\u570A';
System.out.println(c); // Output: 圊
JSON:
{"text": "\u570A"} // Value: 圊
Python:
char = '\u570A'
print(char) # Output: 圊
Perl:
my $char = "\x{570A}";
print $char; # Output: 圊
PHP:
$char = "\x{570A}";
echo $char; // Output: 圊
Ruby:
char = "\u{570A}"
puts char # Output: 圊
Rust:
let c = '\u{570A}';
println!("{}", c); // Output: 圊
Go:
char := '\u570A'
fmt.Printf("%c\n", char) // Output: 圊
CSS:
/* CSS content property */
.element::before {
content: "\00570A"; /* 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%8A
MD5:
93bcb2fe7aa81578eba647607a62ac3b
SHA1:
4f01edc68892f00d84b2d98dfbf7938e9aed3cfe
Base64:
5ZyK