C:
char c = '\u90A7';
printf("%c\n", c); // Output: 邧
JavaScript:
const char = '\u90A7';
console.log(char); // Output: 邧
Java:
char c = '\u90A7';
System.out.println(c); // Output: 邧
JSON:
{"text": "\u90A7"} // Value: 邧
Python:
char = '\u90A7'
print(char) # Output: 邧
Perl:
my $char = "\x{90A7}";
print $char; # Output: 邧
PHP:
$char = "\x{90A7}";
echo $char; // Output: 邧
Ruby:
char = "\u{90A7}"
puts char # Output: 邧
Rust:
let c = '\u{90A7}';
println!("{}", c); // Output: 邧
Go:
char := '\u90A7'
fmt.Printf("%c\n", char) // Output: 邧
CSS:
/* CSS content property */
.element::before {
content: "\0090A7"; /* 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%A7
MD5:
4c6c21b93c14a3c59e818f4519a63e3c
SHA1:
ff7c601c277f51ef7162fa7bc9a930821ea78057
Base64:
6YKn