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