C:
char c = '\u80E7';
printf("%c\n", c); // Output: 胧
JavaScript:
const char = '\u80E7';
console.log(char); // Output: 胧
Java:
char c = '\u80E7';
System.out.println(c); // Output: 胧
JSON:
{"text": "\u80E7"} // Value: 胧
Python:
char = '\u80E7'
print(char) # Output: 胧
Perl:
my $char = "\x{80E7}";
print $char; # Output: 胧
PHP:
$char = "\x{80E7}";
echo $char; // Output: 胧
Ruby:
char = "\u{80E7}"
puts char # Output: 胧
Rust:
let c = '\u{80E7}';
println!("{}", c); // Output: 胧
Go:
char := '\u80E7'
fmt.Printf("%c\n", char) // Output: 胧
CSS:
/* CSS content property */
.element::before {
content: "\0080E7"; /* 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%83%A7
MD5:
3f64442fd5dce38e68ac267f47a1dcd4
SHA1:
65898f44cb143db139662242a7fc0b8054c2141a
Base64:
6IOn