C:
char c = '\u5905';
printf("%c\n", c); // Output: 夅
JavaScript:
const char = '\u5905';
console.log(char); // Output: 夅
Java:
char c = '\u5905';
System.out.println(c); // Output: 夅
JSON:
{"text": "\u5905"} // Value: 夅
Python:
char = '\u5905'
print(char) # Output: 夅
Perl:
my $char = "\x{5905}";
print $char; # Output: 夅
PHP:
$char = "\x{5905}";
echo $char; // Output: 夅
Ruby:
char = "\u{5905}"
puts char # Output: 夅
Rust:
let c = '\u{5905}';
println!("{}", c); // Output: 夅
Go:
char := '\u5905'
fmt.Printf("%c\n", char) // Output: 夅
CSS:
/* CSS content property */
.element::before {
content: "\005905"; /* 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%85
MD5:
6d5122fc905e667546b243aada9aeb39
SHA1:
4afc5e24c73437dcc96c984a273479fdd212b059
Base64:
5aSF