C:
char c = '\u8056';
printf("%c\n", c); // Output: 聖
JavaScript:
const char = '\u8056';
console.log(char); // Output: 聖
Java:
char c = '\u8056';
System.out.println(c); // Output: 聖
JSON:
{"text": "\u8056"} // Value: 聖
Python:
char = '\u8056'
print(char) # Output: 聖
Perl:
my $char = "\x{8056}";
print $char; # Output: 聖
PHP:
$char = "\x{8056}";
echo $char; // Output: 聖
Ruby:
char = "\u{8056}"
puts char # Output: 聖
Rust:
let c = '\u{8056}';
println!("{}", c); // Output: 聖
Go:
char := '\u8056'
fmt.Printf("%c\n", char) // Output: 聖
CSS:
/* CSS content property */
.element::before {
content: "\008056"; /* 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%96
MD5:
cc9b87a9ca7d11868294a4c897fd1e93
SHA1:
e590b167867e4d913205d0888c2c8d10882fe05f
Base64:
6IGW