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