C:
char c = '\u55B2';
printf("%c\n", c); // Output: 喲
JavaScript:
const char = '\u55B2';
console.log(char); // Output: 喲
Java:
char c = '\u55B2';
System.out.println(c); // Output: 喲
JSON:
{"text": "\u55B2"} // Value: 喲
Python:
char = '\u55B2'
print(char) # Output: 喲
Perl:
my $char = "\x{55B2}";
print $char; # Output: 喲
PHP:
$char = "\x{55B2}";
echo $char; // Output: 喲
Ruby:
char = "\u{55B2}"
puts char # Output: 喲
Rust:
let c = '\u{55B2}';
println!("{}", c); // Output: 喲
Go:
char := '\u55B2'
fmt.Printf("%c\n", char) // Output: 喲
CSS:
/* CSS content property */
.element::before {
content: "\0055B2"; /* 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%B2
MD5:
649c5d459d06a42b1bbab0a4ac9f48c7
SHA1:
be61ae65329ff5db1c7f76bd21196f1eb9c2a39b
Base64:
5Zay