C:
char c = '\u5797';
printf("%c\n", c); // Output: 垗
JavaScript:
const char = '\u5797';
console.log(char); // Output: 垗
Java:
char c = '\u5797';
System.out.println(c); // Output: 垗
JSON:
{"text": "\u5797"} // Value: 垗
Python:
char = '\u5797'
print(char) # Output: 垗
Perl:
my $char = "\x{5797}";
print $char; # Output: 垗
PHP:
$char = "\x{5797}";
echo $char; // Output: 垗
Ruby:
char = "\u{5797}"
puts char # Output: 垗
Rust:
let c = '\u{5797}';
println!("{}", c); // Output: 垗
Go:
char := '\u5797'
fmt.Printf("%c\n", char) // Output: 垗
CSS:
/* CSS content property */
.element::before {
content: "\005797"; /* 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%97
MD5:
45cc1c1f767529d4963e1890384ec525
SHA1:
a40815d542a4beb4e01b732c8b95fbd6399503ea
Base64:
5Z6X