C:
char c = '\u7253';
printf("%c\n", c); // Output: 牓
JavaScript:
const char = '\u7253';
console.log(char); // Output: 牓
Java:
char c = '\u7253';
System.out.println(c); // Output: 牓
JSON:
{"text": "\u7253"} // Value: 牓
Python:
char = '\u7253'
print(char) # Output: 牓
Perl:
my $char = "\x{7253}";
print $char; # Output: 牓
PHP:
$char = "\x{7253}";
echo $char; // Output: 牓
Ruby:
char = "\u{7253}"
puts char # Output: 牓
Rust:
let c = '\u{7253}';
println!("{}", c); // Output: 牓
Go:
char := '\u7253'
fmt.Printf("%c\n", char) // Output: 牓
CSS:
/* CSS content property */
.element::before {
content: "\007253"; /* 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=%E7%89%93
MD5:
74104d8d79f828bd722991cb98edf564
SHA1:
56977d34e34cd509d906eb65b53fd3234d824d71
Base64:
54mT