C:
char c = '\u5807';
printf("%c\n", c); // Output: 堇
JavaScript:
const char = '\u5807';
console.log(char); // Output: 堇
Java:
char c = '\u5807';
System.out.println(c); // Output: 堇
JSON:
{"text": "\u5807"} // Value: 堇
Python:
char = '\u5807'
print(char) # Output: 堇
Perl:
my $char = "\x{5807}";
print $char; # Output: 堇
PHP:
$char = "\x{5807}";
echo $char; // Output: 堇
Ruby:
char = "\u{5807}"
puts char # Output: 堇
Rust:
let c = '\u{5807}';
println!("{}", c); // Output: 堇
Go:
char := '\u5807'
fmt.Printf("%c\n", char) // Output: 堇
CSS:
/* CSS content property */
.element::before {
content: "\005807"; /* 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%A0%87
MD5:
d962de571a3b12dc64550b6092933798
SHA1:
bb139b92772457cf45e52aaf3f75f34865ca996d
Base64:
5aCH