C:
char c = '\u9099';
printf("%c\n", c); // Output: 邙
JavaScript:
const char = '\u9099';
console.log(char); // Output: 邙
Java:
char c = '\u9099';
System.out.println(c); // Output: 邙
JSON:
{"text": "\u9099"} // Value: 邙
Python:
char = '\u9099'
print(char) # Output: 邙
Perl:
my $char = "\x{9099}";
print $char; # Output: 邙
PHP:
$char = "\x{9099}";
echo $char; // Output: 邙
Ruby:
char = "\u{9099}"
puts char # Output: 邙
Rust:
let c = '\u{9099}';
println!("{}", c); // Output: 邙
Go:
char := '\u9099'
fmt.Printf("%c\n", char) // Output: 邙
CSS:
/* CSS content property */
.element::before {
content: "\009099"; /* 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%99
MD5:
ef2729cfa9da9fcd782029b65051fa7c
SHA1:
5ff51400098d8347289c8bcb754f9d214033428f
Base64:
6YKZ