C:
char c = '\u6086';
printf("%c\n", c); // Output: 悆
JavaScript:
const char = '\u6086';
console.log(char); // Output: 悆
Java:
char c = '\u6086';
System.out.println(c); // Output: 悆
JSON:
{"text": "\u6086"} // Value: 悆
Python:
char = '\u6086'
print(char) # Output: 悆
Perl:
my $char = "\x{6086}";
print $char; # Output: 悆
PHP:
$char = "\x{6086}";
echo $char; // Output: 悆
Ruby:
char = "\u{6086}"
puts char # Output: 悆
Rust:
let c = '\u{6086}';
println!("{}", c); // Output: 悆
Go:
char := '\u6086'
fmt.Printf("%c\n", char) // Output: 悆
CSS:
/* CSS content property */
.element::before {
content: "\006086"; /* 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%86
MD5:
afc5fbbc1fb3c3c7875c7866cef55f1c
SHA1:
f1c7f8e1921922c9caf1c836179f63514c820ef8
Base64:
5oKG