C:
char c = '\u9086';
printf("%c\n", c); // Output: 邆
JavaScript:
const char = '\u9086';
console.log(char); // Output: 邆
Java:
char c = '\u9086';
System.out.println(c); // Output: 邆
JSON:
{"text": "\u9086"} // Value: 邆
Python:
char = '\u9086'
print(char) # Output: 邆
Perl:
my $char = "\x{9086}";
print $char; # Output: 邆
PHP:
$char = "\x{9086}";
echo $char; // Output: 邆
Ruby:
char = "\u{9086}"
puts char # Output: 邆
Rust:
let c = '\u{9086}';
println!("{}", c); // Output: 邆
Go:
char := '\u9086'
fmt.Printf("%c\n", char) // Output: 邆
CSS:
/* CSS content property */
.element::before {
content: "\009086"; /* 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=%E9%82%86
MD5:
5d41bd955864e970db9dc510b7fe7840
SHA1:
95617a4da147cd94ec8703cf89222111f803ad59
Base64:
6YKG