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