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