C:
char c = '\u8241';
printf("%c\n", c); // Output: 艁
JavaScript:
const char = '\u8241';
console.log(char); // Output: 艁
Java:
char c = '\u8241';
System.out.println(c); // Output: 艁
JSON:
{"text": "\u8241"} // Value: 艁
Python:
char = '\u8241'
print(char) # Output: 艁
Perl:
my $char = "\x{8241}";
print $char; # Output: 艁
PHP:
$char = "\x{8241}";
echo $char; // Output: 艁
Ruby:
char = "\u{8241}"
puts char # Output: 艁
Rust:
let c = '\u{8241}';
println!("{}", c); // Output: 艁
Go:
char := '\u8241'
fmt.Printf("%c\n", char) // Output: 艁
CSS:
/* CSS content property */
.element::before {
content: "\008241"; /* 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%81
MD5:
275b98fc42a59bcf337cd59dcb1d3db8
SHA1:
a879b40270ec4b14ffae3896de09884638f1f3c9
Base64:
6ImB