C:
char c = '\u8289';
printf("%c\n", c); // Output: 芉
JavaScript:
const char = '\u8289';
console.log(char); // Output: 芉
Java:
char c = '\u8289';
System.out.println(c); // Output: 芉
JSON:
{"text": "\u8289"} // Value: 芉
Python:
char = '\u8289'
print(char) # Output: 芉
Perl:
my $char = "\x{8289}";
print $char; # Output: 芉
PHP:
$char = "\x{8289}";
echo $char; // Output: 芉
Ruby:
char = "\u{8289}"
puts char # Output: 芉
Rust:
let c = '\u{8289}';
println!("{}", c); // Output: 芉
Go:
char := '\u8289'
fmt.Printf("%c\n", char) // Output: 芉
CSS:
/* CSS content property */
.element::before {
content: "\008289"; /* 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%89
MD5:
83406bf05ce3b5627c6d2164155bbac0
SHA1:
e68e4e7258a95dabb6ab193c899d83e833d5ebff
Base64:
6IqJ