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