C:
char c = '\u94B1';
printf("%c\n", c); // Output: 钱
JavaScript:
const char = '\u94B1';
console.log(char); // Output: 钱
Java:
char c = '\u94B1';
System.out.println(c); // Output: 钱
JSON:
{"text": "\u94B1"} // Value: 钱
Python:
char = '\u94B1'
print(char) # Output: 钱
Perl:
my $char = "\x{94B1}";
print $char; # Output: 钱
PHP:
$char = "\x{94B1}";
echo $char; // Output: 钱
Ruby:
char = "\u{94B1}"
puts char # Output: 钱
Rust:
let c = '\u{94B1}';
println!("{}", c); // Output: 钱
Go:
char := '\u94B1'
fmt.Printf("%c\n", char) // Output: 钱
CSS:
/* CSS content property */
.element::before {
content: "\0094B1"; /* 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=%E9%92%B1
MD5:
d23513f09bc68d3136f8b1e395bcd1d9
SHA1:
db4be6187513206218088a2558b912671d636aa9
Base64:
6ZKx