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