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