C:
char c = '\u5309';
printf("%c\n", c); // Output: 匉
JavaScript:
const char = '\u5309';
console.log(char); // Output: 匉
Java:
char c = '\u5309';
System.out.println(c); // Output: 匉
JSON:
{"text": "\u5309"} // Value: 匉
Python:
char = '\u5309'
print(char) # Output: 匉
Perl:
my $char = "\x{5309}";
print $char; # Output: 匉
PHP:
$char = "\x{5309}";
echo $char; // Output: 匉
Ruby:
char = "\u{5309}"
puts char # Output: 匉
Rust:
let c = '\u{5309}';
println!("{}", c); // Output: 匉
Go:
char := '\u5309'
fmt.Printf("%c\n", char) // Output: 匉
CSS:
/* CSS content property */
.element::before {
content: "\005309"; /* 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%89
MD5:
788a287f5987bd5bda97d1ba3b305496
SHA1:
5b62d90a528d4dad29964880e01e80da73bd8797
Base64:
5YyJ