C:
char c = '\u8271';
printf("%c\n", c); // Output: 艱
JavaScript:
const char = '\u8271';
console.log(char); // Output: 艱
Java:
char c = '\u8271';
System.out.println(c); // Output: 艱
JSON:
{"text": "\u8271"} // Value: 艱
Python:
char = '\u8271'
print(char) # Output: 艱
Perl:
my $char = "\x{8271}";
print $char; # Output: 艱
PHP:
$char = "\x{8271}";
echo $char; // Output: 艱
Ruby:
char = "\u{8271}"
puts char # Output: 艱
Rust:
let c = '\u{8271}';
println!("{}", c); // Output: 艱
Go:
char := '\u8271'
fmt.Printf("%c\n", char) // Output: 艱
CSS:
/* CSS content property */
.element::before {
content: "\008271"; /* 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=%E8%89%B1
MD5:
21f6a54a99978c68787825cc6ad7ce9a
SHA1:
9c5e740714916c04c8c8bb6b3e042603c19a35a6
Base64:
6Imx