C:
char c = '\u9097';
printf("%c\n", c); // Output: 邗
JavaScript:
const char = '\u9097';
console.log(char); // Output: 邗
Java:
char c = '\u9097';
System.out.println(c); // Output: 邗
JSON:
{"text": "\u9097"} // Value: 邗
Python:
char = '\u9097'
print(char) # Output: 邗
Perl:
my $char = "\x{9097}";
print $char; # Output: 邗
PHP:
$char = "\x{9097}";
echo $char; // Output: 邗
Ruby:
char = "\u{9097}"
puts char # Output: 邗
Rust:
let c = '\u{9097}';
println!("{}", c); // Output: 邗
Go:
char := '\u9097'
fmt.Printf("%c\n", char) // Output: 邗
CSS:
/* CSS content property */
.element::before {
content: "\009097"; /* 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%97
MD5:
194d0394de5c5a0f0f3ba06dad768698
SHA1:
77699efe7051b3510391492e48731e54c8cf4874
Base64:
6YKX