C:
char c = '\u5552';
printf("%c\n", c); // Output: 啒
JavaScript:
const char = '\u5552';
console.log(char); // Output: 啒
Java:
char c = '\u5552';
System.out.println(c); // Output: 啒
JSON:
{"text": "\u5552"} // Value: 啒
Python:
char = '\u5552'
print(char) # Output: 啒
Perl:
my $char = "\x{5552}";
print $char; # Output: 啒
PHP:
$char = "\x{5552}";
echo $char; // Output: 啒
Ruby:
char = "\u{5552}"
puts char # Output: 啒
Rust:
let c = '\u{5552}';
println!("{}", c); // Output: 啒
Go:
char := '\u5552'
fmt.Printf("%c\n", char) // Output: 啒
CSS:
/* CSS content property */
.element::before {
content: "\005552"; /* 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%95%92
MD5:
aa47787aad2894056715b91170712f21
SHA1:
de67bd5f4254e3f590c3bb29a04c8d6f9837035f
Base64:
5ZWS