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