C:
char c = '\u8290';
printf("%c\n", c); // Output: 芐
JavaScript:
const char = '\u8290';
console.log(char); // Output: 芐
Java:
char c = '\u8290';
System.out.println(c); // Output: 芐
JSON:
{"text": "\u8290"} // Value: 芐
Python:
char = '\u8290'
print(char) # Output: 芐
Perl:
my $char = "\x{8290}";
print $char; # Output: 芐
PHP:
$char = "\x{8290}";
echo $char; // Output: 芐
Ruby:
char = "\u{8290}"
puts char # Output: 芐
Rust:
let c = '\u{8290}';
println!("{}", c); // Output: 芐
Go:
char := '\u8290'
fmt.Printf("%c\n", char) // Output: 芐
CSS:
/* CSS content property */
.element::before {
content: "\008290"; /* 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%8A%90
MD5:
4d59da3b8c1181aef452e1cf19022175
SHA1:
796e670a9869dc1b1fac20389542b727be2c9af0
Base64:
6IqQ