C:
char c = '\u8242';
printf("%c\n", c); // Output: 艂
JavaScript:
const char = '\u8242';
console.log(char); // Output: 艂
Java:
char c = '\u8242';
System.out.println(c); // Output: 艂
JSON:
{"text": "\u8242"} // Value: 艂
Python:
char = '\u8242'
print(char) # Output: 艂
Perl:
my $char = "\x{8242}";
print $char; # Output: 艂
PHP:
$char = "\x{8242}";
echo $char; // Output: 艂
Ruby:
char = "\u{8242}"
puts char # Output: 艂
Rust:
let c = '\u{8242}';
println!("{}", c); // Output: 艂
Go:
char := '\u8242'
fmt.Printf("%c\n", char) // Output: 艂
CSS:
/* CSS content property */
.element::before {
content: "\008242"; /* 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%82
MD5:
1264016cd6cfdfe0335c5cec6b28c325
SHA1:
77d8197566050a797f8aa293718370d45f54cf0d
Base64:
6ImC