C:
char c = '\u8651';
printf("%c\n", c); // Output: 虑
JavaScript:
const char = '\u8651';
console.log(char); // Output: 虑
Java:
char c = '\u8651';
System.out.println(c); // Output: 虑
JSON:
{"text": "\u8651"} // Value: 虑
Python:
char = '\u8651'
print(char) # Output: 虑
Perl:
my $char = "\x{8651}";
print $char; # Output: 虑
PHP:
$char = "\x{8651}";
echo $char; // Output: 虑
Ruby:
char = "\u{8651}"
puts char # Output: 虑
Rust:
let c = '\u{8651}';
println!("{}", c); // Output: 虑
Go:
char := '\u8651'
fmt.Printf("%c\n", char) // Output: 虑
CSS:
/* CSS content property */
.element::before {
content: "\008651"; /* 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%99%91
MD5:
11625753cdd39c83abb9fabeb6268624
SHA1:
5b141335c4b3049db584147b2dbc21e044ab37ed
Base64:
6JmR