C:
char c = '\u7041';
printf("%c\n", c); // Output: 灁
JavaScript:
const char = '\u7041';
console.log(char); // Output: 灁
Java:
char c = '\u7041';
System.out.println(c); // Output: 灁
JSON:
{"text": "\u7041"} // Value: 灁
Python:
char = '\u7041'
print(char) # Output: 灁
Perl:
my $char = "\x{7041}";
print $char; # Output: 灁
PHP:
$char = "\x{7041}";
echo $char; // Output: 灁
Ruby:
char = "\u{7041}"
puts char # Output: 灁
Rust:
let c = '\u{7041}';
println!("{}", c); // Output: 灁
Go:
char := '\u7041'
fmt.Printf("%c\n", char) // Output: 灁
CSS:
/* CSS content property */
.element::before {
content: "\007041"; /* 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=%E7%81%81
MD5:
93da12b0354e4ae0689c522ae3ab6ad0
SHA1:
fff65f1ad62e0161c7d7f9c77ba252f626936754
Base64:
54GB