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