C:
char c = '\u5304';
printf("%c\n", c); // Output: 匄
JavaScript:
const char = '\u5304';
console.log(char); // Output: 匄
Java:
char c = '\u5304';
System.out.println(c); // Output: 匄
JSON:
{"text": "\u5304"} // Value: 匄
Python:
char = '\u5304'
print(char) # Output: 匄
Perl:
my $char = "\x{5304}";
print $char; # Output: 匄
PHP:
$char = "\x{5304}";
echo $char; // Output: 匄
Ruby:
char = "\u{5304}"
puts char # Output: 匄
Rust:
let c = '\u{5304}';
println!("{}", c); // Output: 匄
Go:
char := '\u5304'
fmt.Printf("%c\n", char) // Output: 匄
CSS:
/* CSS content property */
.element::before {
content: "\005304"; /* 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%84
MD5:
374d6167141666c809189ccc2bf551da
SHA1:
358a5ef684a14102db3c8e43ce04e87a20d05d5e
Base64:
5YyE