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