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