C:
char c = '\u9091';
printf("%c\n", c); // Output: 邑
JavaScript:
const char = '\u9091';
console.log(char); // Output: 邑
Java:
char c = '\u9091';
System.out.println(c); // Output: 邑
JSON:
{"text": "\u9091"} // Value: 邑
Python:
char = '\u9091'
print(char) # Output: 邑
Perl:
my $char = "\x{9091}";
print $char; # Output: 邑
PHP:
$char = "\x{9091}";
echo $char; // Output: 邑
Ruby:
char = "\u{9091}"
puts char # Output: 邑
Rust:
let c = '\u{9091}';
println!("{}", c); // Output: 邑
Go:
char := '\u9091'
fmt.Printf("%c\n", char) // Output: 邑
CSS:
/* CSS content property */
.element::before {
content: "\009091"; /* 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%91
MD5:
a3d3d97da95e86e2166bff18e8519991
SHA1:
533c8253fbc417a830349c733a5dad589a1965a3
Base64:
6YKR