C:
char c = '\u87A2';
printf("%c\n", c); // Output: 螢
JavaScript:
const char = '\u87A2';
console.log(char); // Output: 螢
Java:
char c = '\u87A2';
System.out.println(c); // Output: 螢
JSON:
{"text": "\u87A2"} // Value: 螢
Python:
char = '\u87A2'
print(char) # Output: 螢
Perl:
my $char = "\x{87A2}";
print $char; # Output: 螢
PHP:
$char = "\x{87A2}";
echo $char; // Output: 螢
Ruby:
char = "\u{87A2}"
puts char # Output: 螢
Rust:
let c = '\u{87A2}';
println!("{}", c); // Output: 螢
Go:
char := '\u87A2'
fmt.Printf("%c\n", char) // Output: 螢
CSS:
/* CSS content property */
.element::before {
content: "\0087A2"; /* 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%9E%A2
MD5:
8f96b9945fc9e618ef99af5ba851b15a
SHA1:
bb51caea3496e943aa6d84ee4f487393c89ee84a
Base64:
6J6i