C:
char c = '\u5366';
printf("%c\n", c); // Output: 卦
JavaScript:
const char = '\u5366';
console.log(char); // Output: 卦
Java:
char c = '\u5366';
System.out.println(c); // Output: 卦
JSON:
{"text": "\u5366"} // Value: 卦
Python:
char = '\u5366'
print(char) # Output: 卦
Perl:
my $char = "\x{5366}";
print $char; # Output: 卦
PHP:
$char = "\x{5366}";
echo $char; // Output: 卦
Ruby:
char = "\u{5366}"
puts char # Output: 卦
Rust:
let c = '\u{5366}';
println!("{}", c); // Output: 卦
Go:
char := '\u5366'
fmt.Printf("%c\n", char) // Output: 卦
CSS:
/* CSS content property */
.element::before {
content: "\005366"; /* 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%8D%A6
MD5:
26800172bbf3acc2e344a8cc4f703d36
SHA1:
0edb03a3fc522c31a6c80b40a4657f95d5aab494
Base64:
5Y2m