C:
char c = '\u5796';
printf("%c\n", c); // Output: 垖
JavaScript:
const char = '\u5796';
console.log(char); // Output: 垖
Java:
char c = '\u5796';
System.out.println(c); // Output: 垖
JSON:
{"text": "\u5796"} // Value: 垖
Python:
char = '\u5796'
print(char) # Output: 垖
Perl:
my $char = "\x{5796}";
print $char; # Output: 垖
PHP:
$char = "\x{5796}";
echo $char; // Output: 垖
Ruby:
char = "\u{5796}"
puts char # Output: 垖
Rust:
let c = '\u{5796}';
println!("{}", c); // Output: 垖
Go:
char := '\u5796'
fmt.Printf("%c\n", char) // Output: 垖
CSS:
/* CSS content property */
.element::before {
content: "\005796"; /* 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%96
MD5:
854c2f2fedbb09464a3c898f11e8658e
SHA1:
0e6d465131662e33e7ed92ade364294996c2eea0
Base64:
5Z6W