C:
char c = '\u9526';
printf("%c\n", c); // Output: 锦
JavaScript:
const char = '\u9526';
console.log(char); // Output: 锦
Java:
char c = '\u9526';
System.out.println(c); // Output: 锦
JSON:
{"text": "\u9526"} // Value: 锦
Python:
char = '\u9526'
print(char) # Output: 锦
Perl:
my $char = "\x{9526}";
print $char; # Output: 锦
PHP:
$char = "\x{9526}";
echo $char; // Output: 锦
Ruby:
char = "\u{9526}"
puts char # Output: 锦
Rust:
let c = '\u{9526}';
println!("{}", c); // Output: 锦
Go:
char := '\u9526'
fmt.Printf("%c\n", char) // Output: 锦
CSS:
/* CSS content property */
.element::before {
content: "\009526"; /* 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%94%A6
MD5:
c768ebe9969fa330145cefc2bafd1761
SHA1:
8587667c2716d2a06940d96ee45678e41f85ee17
Base64:
6ZSm