C:
char c = '\u88E8';
printf("%c\n", c); // Output: 裨
JavaScript:
const char = '\u88E8';
console.log(char); // Output: 裨
Java:
char c = '\u88E8';
System.out.println(c); // Output: 裨
JSON:
{"text": "\u88E8"} // Value: 裨
Python:
char = '\u88E8'
print(char) # Output: 裨
Perl:
my $char = "\x{88E8}";
print $char; # Output: 裨
PHP:
$char = "\x{88E8}";
echo $char; // Output: 裨
Ruby:
char = "\u{88E8}"
puts char # Output: 裨
Rust:
let c = '\u{88E8}';
println!("{}", c); // Output: 裨
Go:
char := '\u88E8'
fmt.Printf("%c\n", char) // Output: 裨
CSS:
/* CSS content property */
.element::before {
content: "\0088E8"; /* 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=%E8%A3%A8
MD5:
2c6f4f55e1d9698af365dbc202183529
SHA1:
e341d7cc832b49957ef7ed33cf91f020f3433b99
Base64:
6KOo