C:
char c = '\u9306';
printf("%c\n", c); // Output: 錆
JavaScript:
const char = '\u9306';
console.log(char); // Output: 錆
Java:
char c = '\u9306';
System.out.println(c); // Output: 錆
JSON:
{"text": "\u9306"} // Value: 錆
Python:
char = '\u9306'
print(char) # Output: 錆
Perl:
my $char = "\x{9306}";
print $char; # Output: 錆
PHP:
$char = "\x{9306}";
echo $char; // Output: 錆
Ruby:
char = "\u{9306}"
puts char # Output: 錆
Rust:
let c = '\u{9306}';
println!("{}", c); // Output: 錆
Go:
char := '\u9306'
fmt.Printf("%c\n", char) // Output: 錆
CSS:
/* CSS content property */
.element::before {
content: "\009306"; /* 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%8C%86
MD5:
409ce04c4ec7b9ac345bd674c774cb59
SHA1:
ab5ba91171c3a7a8f5770fbc35c4e0cacd279eed
Base64:
6YyG