C:
char c = '\u8248';
printf("%c\n", c); // Output: 艈
JavaScript:
const char = '\u8248';
console.log(char); // Output: 艈
Java:
char c = '\u8248';
System.out.println(c); // Output: 艈
JSON:
{"text": "\u8248"} // Value: 艈
Python:
char = '\u8248'
print(char) # Output: 艈
Perl:
my $char = "\x{8248}";
print $char; # Output: 艈
PHP:
$char = "\x{8248}";
echo $char; // Output: 艈
Ruby:
char = "\u{8248}"
puts char # Output: 艈
Rust:
let c = '\u{8248}';
println!("{}", c); // Output: 艈
Go:
char := '\u8248'
fmt.Printf("%c\n", char) // Output: 艈
CSS:
/* CSS content property */
.element::before {
content: "\008248"; /* 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%88
MD5:
7d650995a47fdd69a5f104401dae8971
SHA1:
6de87ec7522c64f25833567c00a3276895a2db18
Base64:
6ImI