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