C:
char c = '\u5870';
printf("%c\n", c); // Output: 塰
JavaScript:
const char = '\u5870';
console.log(char); // Output: 塰
Java:
char c = '\u5870';
System.out.println(c); // Output: 塰
JSON:
{"text": "\u5870"} // Value: 塰
Python:
char = '\u5870'
print(char) # Output: 塰
Perl:
my $char = "\x{5870}";
print $char; # Output: 塰
PHP:
$char = "\x{5870}";
echo $char; // Output: 塰
Ruby:
char = "\u{5870}"
puts char # Output: 塰
Rust:
let c = '\u{5870}';
println!("{}", c); // Output: 塰
Go:
char := '\u5870'
fmt.Printf("%c\n", char) // Output: 塰
CSS:
/* CSS content property */
.element::before {
content: "\005870"; /* 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%B0
MD5:
fc9e0a3e4d22075ed0f5f1fbc14bbdc0
SHA1:
a581a05d786615a10c09aedbcbf03e8c5aa7ba4a
Base64:
5aGw