C:
char c = '\u5926';
printf("%c\n", c); // Output: 夦
JavaScript:
const char = '\u5926';
console.log(char); // Output: 夦
Java:
char c = '\u5926';
System.out.println(c); // Output: 夦
JSON:
{"text": "\u5926"} // Value: 夦
Python:
char = '\u5926'
print(char) # Output: 夦
Perl:
my $char = "\x{5926}";
print $char; # Output: 夦
PHP:
$char = "\x{5926}";
echo $char; // Output: 夦
Ruby:
char = "\u{5926}"
puts char # Output: 夦
Rust:
let c = '\u{5926}';
println!("{}", c); // Output: 夦
Go:
char := '\u5926'
fmt.Printf("%c\n", char) // Output: 夦
CSS:
/* CSS content property */
.element::before {
content: "\005926"; /* 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%A4%A6
MD5:
e29e77ddcd932fb4248667b47776f80a
SHA1:
d6ba6ad5b11bd4057f453da524886f859e36994f
Base64:
5aSm