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