C:
char c = '\u5332';
printf("%c\n", c); // Output: 匲
JavaScript:
const char = '\u5332';
console.log(char); // Output: 匲
Java:
char c = '\u5332';
System.out.println(c); // Output: 匲
JSON:
{"text": "\u5332"} // Value: 匲
Python:
char = '\u5332'
print(char) # Output: 匲
Perl:
my $char = "\x{5332}";
print $char; # Output: 匲
PHP:
$char = "\x{5332}";
echo $char; // Output: 匲
Ruby:
char = "\u{5332}"
puts char # Output: 匲
Rust:
let c = '\u{5332}';
println!("{}", c); // Output: 匲
Go:
char := '\u5332'
fmt.Printf("%c\n", char) // Output: 匲
CSS:
/* CSS content property */
.element::before {
content: "\005332"; /* 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%B2
MD5:
29e7020bc49e31c181779dd8a60e760e
SHA1:
b84f9cdf9d871a64e8cb52b6d8c77ddc851f8548
Base64:
5Yyy