C:
char c = '\u8F9A';
printf("%c\n", c); // Output: 辚
JavaScript:
const char = '\u8F9A';
console.log(char); // Output: 辚
Java:
char c = '\u8F9A';
System.out.println(c); // Output: 辚
JSON:
{"text": "\u8F9A"} // Value: 辚
Python:
char = '\u8F9A'
print(char) # Output: 辚
Perl:
my $char = "\x{8F9A}";
print $char; # Output: 辚
PHP:
$char = "\x{8F9A}";
echo $char; // Output: 辚
Ruby:
char = "\u{8F9A}"
puts char # Output: 辚
Rust:
let c = '\u{8F9A}';
println!("{}", c); // Output: 辚
Go:
char := '\u8F9A'
fmt.Printf("%c\n", char) // Output: 辚
CSS:
/* CSS content property */
.element::before {
content: "\008F9A"; /* 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%BE%9A
MD5:
caad84816b69a374d11f3c329f648d0e
SHA1:
eed40bb4ebb7100fa979086133fff0a5c7aaf610
Base64:
6L6a