C:
char c = '\u6091';
printf("%c\n", c); // Output: 悑
JavaScript:
const char = '\u6091';
console.log(char); // Output: 悑
Java:
char c = '\u6091';
System.out.println(c); // Output: 悑
JSON:
{"text": "\u6091"} // Value: 悑
Python:
char = '\u6091'
print(char) # Output: 悑
Perl:
my $char = "\x{6091}";
print $char; # Output: 悑
PHP:
$char = "\x{6091}";
echo $char; // Output: 悑
Ruby:
char = "\u{6091}"
puts char # Output: 悑
Rust:
let c = '\u{6091}';
println!("{}", c); // Output: 悑
Go:
char := '\u6091'
fmt.Printf("%c\n", char) // Output: 悑
CSS:
/* CSS content property */
.element::before {
content: "\006091"; /* 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%82%91
MD5:
b1432d15f6c267de9baccde89b78de03
SHA1:
294a2dca1aab15a28b7c3925965ec233ca3df270
Base64:
5oKR