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