C:
char c = '\u5789';
printf("%c\n", c); // Output: 垉
JavaScript:
const char = '\u5789';
console.log(char); // Output: 垉
Java:
char c = '\u5789';
System.out.println(c); // Output: 垉
JSON:
{"text": "\u5789"} // Value: 垉
Python:
char = '\u5789'
print(char) # Output: 垉
Perl:
my $char = "\x{5789}";
print $char; # Output: 垉
PHP:
$char = "\x{5789}";
echo $char; // Output: 垉
Ruby:
char = "\u{5789}"
puts char # Output: 垉
Rust:
let c = '\u{5789}';
println!("{}", c); // Output: 垉
Go:
char := '\u5789'
fmt.Printf("%c\n", char) // Output: 垉
CSS:
/* CSS content property */
.element::before {
content: "\005789"; /* 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%89
MD5:
19478633ec2e3b2701558b9670cee40e
SHA1:
429d9caa665eb656bc33514994947640576f9bf0
Base64:
5Z6J