C:
char c = '\u6099';
printf("%c\n", c); // Output: 悙
JavaScript:
const char = '\u6099';
console.log(char); // Output: 悙
Java:
char c = '\u6099';
System.out.println(c); // Output: 悙
JSON:
{"text": "\u6099"} // Value: 悙
Python:
char = '\u6099'
print(char) # Output: 悙
Perl:
my $char = "\x{6099}";
print $char; # Output: 悙
PHP:
$char = "\x{6099}";
echo $char; // Output: 悙
Ruby:
char = "\u{6099}"
puts char # Output: 悙
Rust:
let c = '\u{6099}';
println!("{}", c); // Output: 悙
Go:
char := '\u6099'
fmt.Printf("%c\n", char) // Output: 悙
CSS:
/* CSS content property */
.element::before {
content: "\006099"; /* 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%99
MD5:
671eb0fc9c695cfb942db2504dfbbed8
SHA1:
f64e20deb73cadc1c4da84bca3af3d2ab7257c92
Base64:
5oKZ