C:
char c = '\u5132';
printf("%c\n", c); // Output: 儲
JavaScript:
const char = '\u5132';
console.log(char); // Output: 儲
Java:
char c = '\u5132';
System.out.println(c); // Output: 儲
JSON:
{"text": "\u5132"} // Value: 儲
Python:
char = '\u5132'
print(char) # Output: 儲
Perl:
my $char = "\x{5132}";
print $char; # Output: 儲
PHP:
$char = "\x{5132}";
echo $char; // Output: 儲
Ruby:
char = "\u{5132}"
puts char # Output: 儲
Rust:
let c = '\u{5132}';
println!("{}", c); // Output: 儲
Go:
char := '\u5132'
fmt.Printf("%c\n", char) // Output: 儲
CSS:
/* CSS content property */
.element::before {
content: "\005132"; /* 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%B2
MD5:
924543a3e1cfe053e0794ab5f6215c42
SHA1:
2e94452a36ad52c3915d33b1d776240b892cbe61
Base64:
5YSy