C:
char c = '\u5B80';
printf("%c\n", c); // Output: 宀
JavaScript:
const char = '\u5B80';
console.log(char); // Output: 宀
Java:
char c = '\u5B80';
System.out.println(c); // Output: 宀
JSON:
{"text": "\u5B80"} // Value: 宀
Python:
char = '\u5B80'
print(char) # Output: 宀
Perl:
my $char = "\x{5B80}";
print $char; # Output: 宀
PHP:
$char = "\x{5B80}";
echo $char; // Output: 宀
Ruby:
char = "\u{5B80}"
puts char # Output: 宀
Rust:
let c = '\u{5B80}';
println!("{}", c); // Output: 宀
Go:
char := '\u5B80'
fmt.Printf("%c\n", char) // Output: 宀
CSS:
/* CSS content property */
.element::before {
content: "\005B80"; /* 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%AE%80
MD5:
5173c2fd884def698f40dd30a012d6c8
SHA1:
4157f6463c1156e5d6f20dad9e073999ccb2e720
Base64:
5a6A