C:
char c = '\u6011';
printf("%c\n", c); // Output: 怑
JavaScript:
const char = '\u6011';
console.log(char); // Output: 怑
Java:
char c = '\u6011';
System.out.println(c); // Output: 怑
JSON:
{"text": "\u6011"} // Value: 怑
Python:
char = '\u6011'
print(char) # Output: 怑
Perl:
my $char = "\x{6011}";
print $char; # Output: 怑
PHP:
$char = "\x{6011}";
echo $char; // Output: 怑
Ruby:
char = "\u{6011}"
puts char # Output: 怑
Rust:
let c = '\u{6011}';
println!("{}", c); // Output: 怑
Go:
char := '\u6011'
fmt.Printf("%c\n", char) // Output: 怑
CSS:
/* CSS content property */
.element::before {
content: "\006011"; /* 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%80%91
MD5:
488a1a2382a71828fb9a131c98565ab0
SHA1:
b82ae6eb0f3aea3685633e219b7e3ec6416eb921
Base64:
5oCR