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