C:
char c = '\u5581';
printf("%c\n", c); // Output: 喁
JavaScript:
const char = '\u5581';
console.log(char); // Output: 喁
Java:
char c = '\u5581';
System.out.println(c); // Output: 喁
JSON:
{"text": "\u5581"} // Value: 喁
Python:
char = '\u5581'
print(char) # Output: 喁
Perl:
my $char = "\x{5581}";
print $char; # Output: 喁
PHP:
$char = "\x{5581}";
echo $char; // Output: 喁
Ruby:
char = "\u{5581}"
puts char # Output: 喁
Rust:
let c = '\u{5581}';
println!("{}", c); // Output: 喁
Go:
char := '\u5581'
fmt.Printf("%c\n", char) // Output: 喁
CSS:
/* CSS content property */
.element::before {
content: "\005581"; /* 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%96%81
MD5:
72296ccbde2c366425bdc232fbcf9e52
SHA1:
164ac5ed26b95476c803201545882376bc6dafad
Base64:
5ZaB