C:
char c = '\u6043';
printf("%c\n", c); // Output: 恃
JavaScript:
const char = '\u6043';
console.log(char); // Output: 恃
Java:
char c = '\u6043';
System.out.println(c); // Output: 恃
JSON:
{"text": "\u6043"} // Value: 恃
Python:
char = '\u6043'
print(char) # Output: 恃
Perl:
my $char = "\x{6043}";
print $char; # Output: 恃
PHP:
$char = "\x{6043}";
echo $char; // Output: 恃
Ruby:
char = "\u{6043}"
puts char # Output: 恃
Rust:
let c = '\u{6043}';
println!("{}", c); // Output: 恃
Go:
char := '\u6043'
fmt.Printf("%c\n", char) // Output: 恃
CSS:
/* CSS content property */
.element::before {
content: "\006043"; /* 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%83
MD5:
99642398e652e04336301f94c389c3e4
SHA1:
d75e5eef2af9359d98b3102c546227781fcea75e
Base64:
5oGD