C:
char c = '\u6BE8';
printf("%c\n", c); // Output: 毨
JavaScript:
const char = '\u6BE8';
console.log(char); // Output: 毨
Java:
char c = '\u6BE8';
System.out.println(c); // Output: 毨
JSON:
{"text": "\u6BE8"} // Value: 毨
Python:
char = '\u6BE8'
print(char) # Output: 毨
Perl:
my $char = "\x{6BE8}";
print $char; # Output: 毨
PHP:
$char = "\x{6BE8}";
echo $char; // Output: 毨
Ruby:
char = "\u{6BE8}"
puts char # Output: 毨
Rust:
let c = '\u{6BE8}';
println!("{}", c); // Output: 毨
Go:
char := '\u6BE8'
fmt.Printf("%c\n", char) // Output: 毨
CSS:
/* CSS content property */
.element::before {
content: "\006BE8"; /* 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=%E6%AF%A8
MD5:
a5087b283e3a8a2ab06ba8cc8d02587a
SHA1:
2bad58c10af081dc67a85782815b62329f0f3296
Base64:
5q+o