C:
char c = '\u6098';
printf("%c\n", c); // Output: 悘
JavaScript:
const char = '\u6098';
console.log(char); // Output: 悘
Java:
char c = '\u6098';
System.out.println(c); // Output: 悘
JSON:
{"text": "\u6098"} // Value: 悘
Python:
char = '\u6098'
print(char) # Output: 悘
Perl:
my $char = "\x{6098}";
print $char; # Output: 悘
PHP:
$char = "\x{6098}";
echo $char; // Output: 悘
Ruby:
char = "\u{6098}"
puts char # Output: 悘
Rust:
let c = '\u{6098}';
println!("{}", c); // Output: 悘
Go:
char := '\u6098'
fmt.Printf("%c\n", char) // Output: 悘
CSS:
/* CSS content property */
.element::before {
content: "\006098"; /* 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%98
MD5:
8ddd67735f3d83ca019de3b5bbd9e396
SHA1:
8956c4b56cb070af76e1389360c6aaedaca35a6a
Base64:
5oKY