C:
char c = '\u5009';
printf("%c\n", c); // Output: 倉
JavaScript:
const char = '\u5009';
console.log(char); // Output: 倉
Java:
char c = '\u5009';
System.out.println(c); // Output: 倉
JSON:
{"text": "\u5009"} // Value: 倉
Python:
char = '\u5009'
print(char) # Output: 倉
Perl:
my $char = "\x{5009}";
print $char; # Output: 倉
PHP:
$char = "\x{5009}";
echo $char; // Output: 倉
Ruby:
char = "\u{5009}"
puts char # Output: 倉
Rust:
let c = '\u{5009}';
println!("{}", c); // Output: 倉
Go:
char := '\u5009'
fmt.Printf("%c\n", char) // Output: 倉
CSS:
/* CSS content property */
.element::before {
content: "\005009"; /* 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%80%89
MD5:
37d9f1df9024270ead572bf0fef8d3b0
SHA1:
caabedc353b4d831a907045e7086f4e08fa2d4f9
Base64:
5YCJ