C:
char c = '\u8CA1';
printf("%c\n", c); // Output: 財
JavaScript:
const char = '\u8CA1';
console.log(char); // Output: 財
Java:
char c = '\u8CA1';
System.out.println(c); // Output: 財
JSON:
{"text": "\u8CA1"} // Value: 財
Python:
char = '\u8CA1'
print(char) # Output: 財
Perl:
my $char = "\x{8CA1}";
print $char; # Output: 財
PHP:
$char = "\x{8CA1}";
echo $char; // Output: 財
Ruby:
char = "\u{8CA1}"
puts char # Output: 財
Rust:
let c = '\u{8CA1}';
println!("{}", c); // Output: 財
Go:
char := '\u8CA1'
fmt.Printf("%c\n", char) // Output: 財
CSS:
/* CSS content property */
.element::before {
content: "\008CA1"; /* 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%A1
MD5:
67babe77d77e02b54cd20540d209827d
SHA1:
72d148251eaee4627e08eb78cfbdfa03dcec8b96
Base64:
6LKh