C:
char c = '\u5900';
printf("%c\n", c); // Output: 夀
JavaScript:
const char = '\u5900';
console.log(char); // Output: 夀
Java:
char c = '\u5900';
System.out.println(c); // Output: 夀
JSON:
{"text": "\u5900"} // Value: 夀
Python:
char = '\u5900'
print(char) # Output: 夀
Perl:
my $char = "\x{5900}";
print $char; # Output: 夀
PHP:
$char = "\x{5900}";
echo $char; // Output: 夀
Ruby:
char = "\u{5900}"
puts char # Output: 夀
Rust:
let c = '\u{5900}';
println!("{}", c); // Output: 夀
Go:
char := '\u5900'
fmt.Printf("%c\n", char) // Output: 夀
CSS:
/* CSS content property */
.element::before {
content: "\005900"; /* 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%80
MD5:
317c4ca565565d3ed6fc85f3fc494544
SHA1:
4cc73fbcb247e9c94237b3b69016feefad73b554
Base64:
5aSA