C:
char c = '\u54AD';
printf("%c\n", c); // Output: 咭
JavaScript:
const char = '\u54AD';
console.log(char); // Output: 咭
Java:
char c = '\u54AD';
System.out.println(c); // Output: 咭
JSON:
{"text": "\u54AD"} // Value: 咭
Python:
char = '\u54AD'
print(char) # Output: 咭
Perl:
my $char = "\x{54AD}";
print $char; # Output: 咭
PHP:
$char = "\x{54AD}";
echo $char; // Output: 咭
Ruby:
char = "\u{54AD}"
puts char # Output: 咭
Rust:
let c = '\u{54AD}';
println!("{}", c); // Output: 咭
Go:
char := '\u54AD'
fmt.Printf("%c\n", char) // Output: 咭
CSS:
/* CSS content property */
.element::before {
content: "\0054AD"; /* 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=%E5%92%AD
MD5:
7fa2c0f4da44a1be4318acc465b0c556
SHA1:
bd72f9ef4bf02e74c69e611019adbde00270659d
Base64:
5ZKt