C:
char c = '\u9508';
printf("%c\n", c); // Output: 锈
JavaScript:
const char = '\u9508';
console.log(char); // Output: 锈
Java:
char c = '\u9508';
System.out.println(c); // Output: 锈
JSON:
{"text": "\u9508"} // Value: 锈
Python:
char = '\u9508'
print(char) # Output: 锈
Perl:
my $char = "\x{9508}";
print $char; # Output: 锈
PHP:
$char = "\x{9508}";
echo $char; // Output: 锈
Ruby:
char = "\u{9508}"
puts char # Output: 锈
Rust:
let c = '\u{9508}';
println!("{}", c); // Output: 锈
Go:
char := '\u9508'
fmt.Printf("%c\n", char) // Output: 锈
CSS:
/* CSS content property */
.element::before {
content: "\009508"; /* 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%88
MD5:
d557dba2e42372f3793a5cd84d0e4374
SHA1:
09b3f9e7e8cab54ce192db37d0231046c46fc9ca
Base64:
6ZSI