C:
char c = '\u5866';
printf("%c\n", c); // Output: 塦
JavaScript:
const char = '\u5866';
console.log(char); // Output: 塦
Java:
char c = '\u5866';
System.out.println(c); // Output: 塦
JSON:
{"text": "\u5866"} // Value: 塦
Python:
char = '\u5866'
print(char) # Output: 塦
Perl:
my $char = "\x{5866}";
print $char; # Output: 塦
PHP:
$char = "\x{5866}";
echo $char; // Output: 塦
Ruby:
char = "\u{5866}"
puts char # Output: 塦
Rust:
let c = '\u{5866}';
println!("{}", c); // Output: 塦
Go:
char := '\u5866'
fmt.Printf("%c\n", char) // Output: 塦
CSS:
/* CSS content property */
.element::before {
content: "\005866"; /* 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%A6
MD5:
95fb608307e20bcbbe7c5b8fded90408
SHA1:
575ca074b6fa45a5d2aacd4aad0e952003b2a83d
Base64:
5aGm