C:
char c = '\u5406';
printf("%c\n", c); // Output: 吆
JavaScript:
const char = '\u5406';
console.log(char); // Output: 吆
Java:
char c = '\u5406';
System.out.println(c); // Output: 吆
JSON:
{"text": "\u5406"} // Value: 吆
Python:
char = '\u5406'
print(char) # Output: 吆
Perl:
my $char = "\x{5406}";
print $char; # Output: 吆
PHP:
$char = "\x{5406}";
echo $char; // Output: 吆
Ruby:
char = "\u{5406}"
puts char # Output: 吆
Rust:
let c = '\u{5406}';
println!("{}", c); // Output: 吆
Go:
char := '\u5406'
fmt.Printf("%c\n", char) // Output: 吆
CSS:
/* CSS content property */
.element::before {
content: "\005406"; /* 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%90%86
MD5:
a0f497d30f54698c31d89f73a57cc517
SHA1:
b0b92efb108daa78b79f2407bfa4ac866f56bd4b
Base64:
5ZCG