C:
char c = '\u8295';
printf("%c\n", c); // Output: 芕
JavaScript:
const char = '\u8295';
console.log(char); // Output: 芕
Java:
char c = '\u8295';
System.out.println(c); // Output: 芕
JSON:
{"text": "\u8295"} // Value: 芕
Python:
char = '\u8295'
print(char) # Output: 芕
Perl:
my $char = "\x{8295}";
print $char; # Output: 芕
PHP:
$char = "\x{8295}";
echo $char; // Output: 芕
Ruby:
char = "\u{8295}"
puts char # Output: 芕
Rust:
let c = '\u{8295}';
println!("{}", c); // Output: 芕
Go:
char := '\u8295'
fmt.Printf("%c\n", char) // Output: 芕
CSS:
/* CSS content property */
.element::before {
content: "\008295"; /* 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%95
MD5:
2c50f848ac73d83fe68cea15013cd065
SHA1:
63a520925780457dea451eea38f02862c73e762a
Base64:
6IqV