C:
char c = '\u9573';
printf("%c\n", c); // Output: 镳
JavaScript:
const char = '\u9573';
console.log(char); // Output: 镳
Java:
char c = '\u9573';
System.out.println(c); // Output: 镳
JSON:
{"text": "\u9573"} // Value: 镳
Python:
char = '\u9573'
print(char) # Output: 镳
Perl:
my $char = "\x{9573}";
print $char; # Output: 镳
PHP:
$char = "\x{9573}";
echo $char; // Output: 镳
Ruby:
char = "\u{9573}"
puts char # Output: 镳
Rust:
let c = '\u{9573}';
println!("{}", c); // Output: 镳
Go:
char := '\u9573'
fmt.Printf("%c\n", char) // Output: 镳
CSS:
/* CSS content property */
.element::before {
content: "\009573"; /* 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%95%B3
MD5:
126db76bbd82ee41f3954acb5dc7fc60
SHA1:
30cd096425cdf754301f236ec335c6cd5d41857e
Base64:
6ZWz