C:
char c = '\u8CEC';
printf("%c\n", c); // Output: 賬
JavaScript:
const char = '\u8CEC';
console.log(char); // Output: 賬
Java:
char c = '\u8CEC';
System.out.println(c); // Output: 賬
JSON:
{"text": "\u8CEC"} // Value: 賬
Python:
char = '\u8CEC'
print(char) # Output: 賬
Perl:
my $char = "\x{8CEC}";
print $char; # Output: 賬
PHP:
$char = "\x{8CEC}";
echo $char; // Output: 賬
Ruby:
char = "\u{8CEC}"
puts char # Output: 賬
Rust:
let c = '\u{8CEC}';
println!("{}", c); // Output: 賬
Go:
char := '\u8CEC'
fmt.Printf("%c\n", char) // Output: 賬
CSS:
/* CSS content property */
.element::before {
content: "\008CEC"; /* 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%B3%AC
MD5:
60e410c8401d23c92cfdee12e66392b1
SHA1:
4f2a6d1cad708f52b4b213d580680f7047d1e68b
Base64:
6LOs