C:
char c = '\u5861';
printf("%c\n", c); // Output: 塡
JavaScript:
const char = '\u5861';
console.log(char); // Output: 塡
Java:
char c = '\u5861';
System.out.println(c); // Output: 塡
JSON:
{"text": "\u5861"} // Value: 塡
Python:
char = '\u5861'
print(char) # Output: 塡
Perl:
my $char = "\x{5861}";
print $char; # Output: 塡
PHP:
$char = "\x{5861}";
echo $char; // Output: 塡
Ruby:
char = "\u{5861}"
puts char # Output: 塡
Rust:
let c = '\u{5861}';
println!("{}", c); // Output: 塡
Go:
char := '\u5861'
fmt.Printf("%c\n", char) // Output: 塡
CSS:
/* CSS content property */
.element::before {
content: "\005861"; /* 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%A1%A1
MD5:
02baa7234109835e35289afed167b9f2
SHA1:
70f99d66338cbfcd7c0d729fccc3d3ad83a57ffc
Base64:
5aGh