C:
char c = '\u9547';
printf("%c\n", c); // Output: 镇
JavaScript:
const char = '\u9547';
console.log(char); // Output: 镇
Java:
char c = '\u9547';
System.out.println(c); // Output: 镇
JSON:
{"text": "\u9547"} // Value: 镇
Python:
char = '\u9547'
print(char) # Output: 镇
Perl:
my $char = "\x{9547}";
print $char; # Output: 镇
PHP:
$char = "\x{9547}";
echo $char; // Output: 镇
Ruby:
char = "\u{9547}"
puts char # Output: 镇
Rust:
let c = '\u{9547}';
println!("{}", c); // Output: 镇
Go:
char := '\u9547'
fmt.Printf("%c\n", char) // Output: 镇
CSS:
/* CSS content property */
.element::before {
content: "\009547"; /* 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%87
MD5:
9bc75759838af40e6095998476e1af32
SHA1:
e4f5d80b4f917a205f7dc2ee2cd929da9fb0bd85
Base64:
6ZWH