C:
char c = '\u9098';
printf("%c\n", c); // Output: 邘
JavaScript:
const char = '\u9098';
console.log(char); // Output: 邘
Java:
char c = '\u9098';
System.out.println(c); // Output: 邘
JSON:
{"text": "\u9098"} // Value: 邘
Python:
char = '\u9098'
print(char) # Output: 邘
Perl:
my $char = "\x{9098}";
print $char; # Output: 邘
PHP:
$char = "\x{9098}";
echo $char; // Output: 邘
Ruby:
char = "\u{9098}"
puts char # Output: 邘
Rust:
let c = '\u{9098}';
println!("{}", c); // Output: 邘
Go:
char := '\u9098'
fmt.Printf("%c\n", char) // Output: 邘
CSS:
/* CSS content property */
.element::before {
content: "\009098"; /* 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%98
MD5:
1c61e0e0751c04025deb245d2eb7eb40
SHA1:
da51f9ec7805af87b967c33c0d85a912a154722b
Base64:
6YKY