C:
char c = '\u9503';
printf("%c\n", c); // Output: 锃
JavaScript:
const char = '\u9503';
console.log(char); // Output: 锃
Java:
char c = '\u9503';
System.out.println(c); // Output: 锃
JSON:
{"text": "\u9503"} // Value: 锃
Python:
char = '\u9503'
print(char) # Output: 锃
Perl:
my $char = "\x{9503}";
print $char; # Output: 锃
PHP:
$char = "\x{9503}";
echo $char; // Output: 锃
Ruby:
char = "\u{9503}"
puts char # Output: 锃
Rust:
let c = '\u{9503}';
println!("{}", c); // Output: 锃
Go:
char := '\u9503'
fmt.Printf("%c\n", char) // Output: 锃
CSS:
/* CSS content property */
.element::before {
content: "\009503"; /* 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%83
MD5:
40b3b9171fea036f5c0efe56f894ff33
SHA1:
98b85cbf833e6e487a5c41b566a408a36ca1617d
Base64:
6ZSD