C:
char c = '\u6041';
printf("%c\n", c); // Output: 恁
JavaScript:
const char = '\u6041';
console.log(char); // Output: 恁
Java:
char c = '\u6041';
System.out.println(c); // Output: 恁
JSON:
{"text": "\u6041"} // Value: 恁
Python:
char = '\u6041'
print(char) # Output: 恁
Perl:
my $char = "\x{6041}";
print $char; # Output: 恁
PHP:
$char = "\x{6041}";
echo $char; // Output: 恁
Ruby:
char = "\u{6041}"
puts char # Output: 恁
Rust:
let c = '\u{6041}';
println!("{}", c); // Output: 恁
Go:
char := '\u6041'
fmt.Printf("%c\n", char) // Output: 恁
CSS:
/* CSS content property */
.element::before {
content: "\006041"; /* 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=%E6%81%81
MD5:
de42fc032744f177af78c53df1506131
SHA1:
f2b022dadbf4738109d2686a7f56d43e74a601e2
Base64:
5oGB