C:
char c = '\u6097';
printf("%c\n", c); // Output: 悗
JavaScript:
const char = '\u6097';
console.log(char); // Output: 悗
Java:
char c = '\u6097';
System.out.println(c); // Output: 悗
JSON:
{"text": "\u6097"} // Value: 悗
Python:
char = '\u6097'
print(char) # Output: 悗
Perl:
my $char = "\x{6097}";
print $char; # Output: 悗
PHP:
$char = "\x{6097}";
echo $char; // Output: 悗
Ruby:
char = "\u{6097}"
puts char # Output: 悗
Rust:
let c = '\u{6097}';
println!("{}", c); // Output: 悗
Go:
char := '\u6097'
fmt.Printf("%c\n", char) // Output: 悗
CSS:
/* CSS content property */
.element::before {
content: "\006097"; /* 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%97
MD5:
26064a38c24a76ae73388d722dae060e
SHA1:
eb6b91172b1ec7d537f36ebe6148aa31f564f37a
Base64:
5oKX