C:
char c = '\u8050';
printf("%c\n", c); // Output: 聐
JavaScript:
const char = '\u8050';
console.log(char); // Output: 聐
Java:
char c = '\u8050';
System.out.println(c); // Output: 聐
JSON:
{"text": "\u8050"} // Value: 聐
Python:
char = '\u8050'
print(char) # Output: 聐
Perl:
my $char = "\x{8050}";
print $char; # Output: 聐
PHP:
$char = "\x{8050}";
echo $char; // Output: 聐
Ruby:
char = "\u{8050}"
puts char # Output: 聐
Rust:
let c = '\u{8050}';
println!("{}", c); // Output: 聐
Go:
char := '\u8050'
fmt.Printf("%c\n", char) // Output: 聐
CSS:
/* CSS content property */
.element::before {
content: "\008050"; /* 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%81%90
MD5:
0db592704ce39c678ae1bfed02ea1244
SHA1:
4952f56feddb8c8a5820c44c8cc78a0062b9af76
Base64:
6IGQ