C:
char c = '\u8084';
printf("%c\n", c); // Output: 肄
JavaScript:
const char = '\u8084';
console.log(char); // Output: 肄
Java:
char c = '\u8084';
System.out.println(c); // Output: 肄
JSON:
{"text": "\u8084"} // Value: 肄
Python:
char = '\u8084'
print(char) # Output: 肄
Perl:
my $char = "\x{8084}";
print $char; # Output: 肄
PHP:
$char = "\x{8084}";
echo $char; // Output: 肄
Ruby:
char = "\u{8084}"
puts char # Output: 肄
Rust:
let c = '\u{8084}';
println!("{}", c); // Output: 肄
Go:
char := '\u8084'
fmt.Printf("%c\n", char) // Output: 肄
CSS:
/* CSS content property */
.element::before {
content: "\008084"; /* 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%82%84
MD5:
da76ab174cf5e7ec2a58cccb6750d65d
SHA1:
818f2805816f1cbabdccdfc4f73f2e2d55eb9eb2
Base64:
6IKE