C:
char c = '\u578F';
printf("%c\n", c); // Output: 垏
JavaScript:
const char = '\u578F';
console.log(char); // Output: 垏
Java:
char c = '\u578F';
System.out.println(c); // Output: 垏
JSON:
{"text": "\u578F"} // Value: 垏
Python:
char = '\u578F'
print(char) # Output: 垏
Perl:
my $char = "\x{578F}";
print $char; # Output: 垏
PHP:
$char = "\x{578F}";
echo $char; // Output: 垏
Ruby:
char = "\u{578F}"
puts char # Output: 垏
Rust:
let c = '\u{578F}';
println!("{}", c); // Output: 垏
Go:
char := '\u578F'
fmt.Printf("%c\n", char) // Output: 垏
CSS:
/* CSS content property */
.element::before {
content: "\00578F"; /* 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%8F
MD5:
913f4a2ffa300a959cbe3d8f15df0f5d
SHA1:
78c99e0cfe53d70c8e74ed0e6e057b6480abdd9a
Base64:
5Z6P