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