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