C:
char c = '\u5793';
printf("%c\n", c); // Output: 垓
JavaScript:
const char = '\u5793';
console.log(char); // Output: 垓
Java:
char c = '\u5793';
System.out.println(c); // Output: 垓
JSON:
{"text": "\u5793"} // Value: 垓
Python:
char = '\u5793'
print(char) # Output: 垓
Perl:
my $char = "\x{5793}";
print $char; # Output: 垓
PHP:
$char = "\x{5793}";
echo $char; // Output: 垓
Ruby:
char = "\u{5793}"
puts char # Output: 垓
Rust:
let c = '\u{5793}';
println!("{}", c); // Output: 垓
Go:
char := '\u5793'
fmt.Printf("%c\n", char) // Output: 垓
CSS:
/* CSS content property */
.element::before {
content: "\005793"; /* 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%93
MD5:
346ef6453b28b189df496d93fa5d4adf
SHA1:
21bf1ca230e1bd668a313e5c58233f9e57234d69
Base64:
5Z6T