C:
char c = '\u8065';
printf("%c\n", c); // Output: 聥
JavaScript:
const char = '\u8065';
console.log(char); // Output: 聥
Java:
char c = '\u8065';
System.out.println(c); // Output: 聥
JSON:
{"text": "\u8065"} // Value: 聥
Python:
char = '\u8065'
print(char) # Output: 聥
Perl:
my $char = "\x{8065}";
print $char; # Output: 聥
PHP:
$char = "\x{8065}";
echo $char; // Output: 聥
Ruby:
char = "\u{8065}"
puts char # Output: 聥
Rust:
let c = '\u{8065}';
println!("{}", c); // Output: 聥
Go:
char := '\u8065'
fmt.Printf("%c\n", char) // Output: 聥
CSS:
/* CSS content property */
.element::before {
content: "\008065"; /* 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%A5
MD5:
38e83ee310708108cfa93ae9729090dd
SHA1:
8e0739be75d0e8dea218e7b34c6aef94494a0b2e
Base64:
6IGl