C:
char c = '\u8CAB';
printf("%c\n", c); // Output: 貫
JavaScript:
const char = '\u8CAB';
console.log(char); // Output: 貫
Java:
char c = '\u8CAB';
System.out.println(c); // Output: 貫
JSON:
{"text": "\u8CAB"} // Value: 貫
Python:
char = '\u8CAB'
print(char) # Output: 貫
Perl:
my $char = "\x{8CAB}";
print $char; # Output: 貫
PHP:
$char = "\x{8CAB}";
echo $char; // Output: 貫
Ruby:
char = "\u{8CAB}"
puts char # Output: 貫
Rust:
let c = '\u{8CAB}';
println!("{}", c); // Output: 貫
Go:
char := '\u8CAB'
fmt.Printf("%c\n", char) // Output: 貫
CSS:
/* CSS content property */
.element::before {
content: "\008CAB"; /* 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%B2%AB
MD5:
3f739e2ee859fe5fe88e499f4ffbdc5f
SHA1:
5708b271730d700b02c5c181c852ffc4aa1373c1
Base64:
6LKr