C:
char c = '\u8CAF';
printf("%c\n", c); // Output: 貯
JavaScript:
const char = '\u8CAF';
console.log(char); // Output: 貯
Java:
char c = '\u8CAF';
System.out.println(c); // Output: 貯
JSON:
{"text": "\u8CAF"} // Value: 貯
Python:
char = '\u8CAF'
print(char) # Output: 貯
Perl:
my $char = "\x{8CAF}";
print $char; # Output: 貯
PHP:
$char = "\x{8CAF}";
echo $char; // Output: 貯
Ruby:
char = "\u{8CAF}"
puts char # Output: 貯
Rust:
let c = '\u{8CAF}';
println!("{}", c); // Output: 貯
Go:
char := '\u8CAF'
fmt.Printf("%c\n", char) // Output: 貯
CSS:
/* CSS content property */
.element::before {
content: "\008CAF"; /* 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=%E8%B2%AF
MD5:
3f024a9e7a9a1217bf025c362b2557af
SHA1:
804c87b88900eff40ae065519148aa76b21710e5
Base64:
6LKv