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