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