C:
char c = '\u5428';
printf("%c\n", c); // Output: 吨
JavaScript:
const char = '\u5428';
console.log(char); // Output: 吨
Java:
char c = '\u5428';
System.out.println(c); // Output: 吨
JSON:
{"text": "\u5428"} // Value: 吨
Python:
char = '\u5428'
print(char) # Output: 吨
Perl:
my $char = "\x{5428}";
print $char; # Output: 吨
PHP:
$char = "\x{5428}";
echo $char; // Output: 吨
Ruby:
char = "\u{5428}"
puts char # Output: 吨
Rust:
let c = '\u{5428}';
println!("{}", c); // Output: 吨
Go:
char := '\u5428'
fmt.Printf("%c\n", char) // Output: 吨
CSS:
/* CSS content property */
.element::before {
content: "\005428"; /* 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%90%A8
MD5:
d84cd85abda76d3849a766ce3b31bdc2
SHA1:
1a719c1f7b8104636ada977c9773df7fc4860916
Base64:
5ZCo