C:
char c = '\u5582';
printf("%c\n", c); // Output: 喂
JavaScript:
const char = '\u5582';
console.log(char); // Output: 喂
Java:
char c = '\u5582';
System.out.println(c); // Output: 喂
JSON:
{"text": "\u5582"} // Value: 喂
Python:
char = '\u5582'
print(char) # Output: 喂
Perl:
my $char = "\x{5582}";
print $char; # Output: 喂
PHP:
$char = "\x{5582}";
echo $char; // Output: 喂
Ruby:
char = "\u{5582}"
puts char # Output: 喂
Rust:
let c = '\u{5582}';
println!("{}", c); // Output: 喂
Go:
char := '\u5582'
fmt.Printf("%c\n", char) // Output: 喂
CSS:
/* CSS content property */
.element::before {
content: "\005582"; /* 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%82
MD5:
367c9508e7ada9acba840fa115d8789c
SHA1:
54c8c607f706da30ca8a05bf2e305cfcab01462d
Base64:
5ZaC