C:
char c = '\u5702';
printf("%c\n", c); // Output: 圂
JavaScript:
const char = '\u5702';
console.log(char); // Output: 圂
Java:
char c = '\u5702';
System.out.println(c); // Output: 圂
JSON:
{"text": "\u5702"} // Value: 圂
Python:
char = '\u5702'
print(char) # Output: 圂
Perl:
my $char = "\x{5702}";
print $char; # Output: 圂
PHP:
$char = "\x{5702}";
echo $char; // Output: 圂
Ruby:
char = "\u{5702}"
puts char # Output: 圂
Rust:
let c = '\u{5702}';
println!("{}", c); // Output: 圂
Go:
char := '\u5702'
fmt.Printf("%c\n", char) // Output: 圂
CSS:
/* CSS content property */
.element::before {
content: "\005702"; /* 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%82
MD5:
41615ebc92532bb883c7de9759bb90bd
SHA1:
037afdfe62dc13a634c719bf360874054f8dc995
Base64:
5ZyC