C:
char c = '\u8270';
printf("%c\n", c); // Output: 艰
JavaScript:
const char = '\u8270';
console.log(char); // Output: 艰
Java:
char c = '\u8270';
System.out.println(c); // Output: 艰
JSON:
{"text": "\u8270"} // Value: 艰
Python:
char = '\u8270'
print(char) # Output: 艰
Perl:
my $char = "\x{8270}";
print $char; # Output: 艰
PHP:
$char = "\x{8270}";
echo $char; // Output: 艰
Ruby:
char = "\u{8270}"
puts char # Output: 艰
Rust:
let c = '\u{8270}';
println!("{}", c); // Output: 艰
Go:
char := '\u8270'
fmt.Printf("%c\n", char) // Output: 艰
CSS:
/* CSS content property */
.element::before {
content: "\008270"; /* 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%B0
MD5:
88e537764847cd07f1c60f53f7c99048
SHA1:
21622eb81e0f6e7c50b8b462340e31850f7c7d92
Base64:
6Imw