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