C:
char c = '\u5109';
printf("%c\n", c); // Output: 儉
JavaScript:
const char = '\u5109';
console.log(char); // Output: 儉
Java:
char c = '\u5109';
System.out.println(c); // Output: 儉
JSON:
{"text": "\u5109"} // Value: 儉
Python:
char = '\u5109'
print(char) # Output: 儉
Perl:
my $char = "\x{5109}";
print $char; # Output: 儉
PHP:
$char = "\x{5109}";
echo $char; // Output: 儉
Ruby:
char = "\u{5109}"
puts char # Output: 儉
Rust:
let c = '\u{5109}';
println!("{}", c); // Output: 儉
Go:
char := '\u5109'
fmt.Printf("%c\n", char) // Output: 儉
CSS:
/* CSS content property */
.element::before {
content: "\005109"; /* 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%89
MD5:
9b1604b0380108c4d2d2c9c4571522f0
SHA1:
6448bc7fd5d99ce15172ff08750ab7c315402c5f
Base64:
5YSJ