C:
char c = '\u91D1';
printf("%c\n", c); // Output: 金
JavaScript:
const char = '\u91D1';
console.log(char); // Output: 金
Java:
char c = '\u91D1';
System.out.println(c); // Output: 金
JSON:
{"text": "\u91D1"} // Value: 金
Python:
char = '\u91D1'
print(char) # Output: 金
Perl:
my $char = "\x{91D1}";
print $char; # Output: 金
PHP:
$char = "\x{91D1}";
echo $char; // Output: 金
Ruby:
char = "\u{91D1}"
puts char # Output: 金
Rust:
let c = '\u{91D1}';
println!("{}", c); // Output: 金
Go:
char := '\u91D1'
fmt.Printf("%c\n", char) // Output: 金
CSS:
/* CSS content property */
.element::before {
content: "\0091D1"; /* 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%87%91
MD5:
9c41898568fd50d0ed8b84a9842ef616
SHA1:
b59df8c44a275e9a91bb76203330bf1e311fc56e
Base64:
6YeR