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