C:
char c = '\u5100';
printf("%c\n", c); // Output: 儀
JavaScript:
const char = '\u5100';
console.log(char); // Output: 儀
Java:
char c = '\u5100';
System.out.println(c); // Output: 儀
JSON:
{"text": "\u5100"} // Value: 儀
Python:
char = '\u5100'
print(char) # Output: 儀
Perl:
my $char = "\x{5100}";
print $char; # Output: 儀
PHP:
$char = "\x{5100}";
echo $char; // Output: 儀
Ruby:
char = "\u{5100}"
puts char # Output: 儀
Rust:
let c = '\u{5100}';
println!("{}", c); // Output: 儀
Go:
char := '\u5100'
fmt.Printf("%c\n", char) // Output: 儀
CSS:
/* CSS content property */
.element::before {
content: "\005100"; /* 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%84%80
MD5:
524f83afe6e61a2fc2ad576ac21a75d7
SHA1:
32261fa9419dc6e9b8023cc216a58ef1ca347f4c
Base64:
5YSA