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