C:
char c = '\u8981';
printf("%c\n", c); // Output: 要
JavaScript:
const char = '\u8981';
console.log(char); // Output: 要
Java:
char c = '\u8981';
System.out.println(c); // Output: 要
JSON:
{"text": "\u8981"} // Value: 要
Python:
char = '\u8981'
print(char) # Output: 要
Perl:
my $char = "\x{8981}";
print $char; # Output: 要
PHP:
$char = "\x{8981}";
echo $char; // Output: 要
Ruby:
char = "\u{8981}"
puts char # Output: 要
Rust:
let c = '\u{8981}';
println!("{}", c); // Output: 要
Go:
char := '\u8981'
fmt.Printf("%c\n", char) // Output: 要
CSS:
/* CSS content property */
.element::before {
content: "\008981"; /* 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=%E8%A6%81
MD5:
5438c873f9d283d2c4015e30a1e2e9b3
SHA1:
93e27107a133fb3ec777db55264b19f9b3fce67a
Base64:
6KaB