C:
char c = '\u9572';
printf("%c\n", c); // Output: 镲
JavaScript:
const char = '\u9572';
console.log(char); // Output: 镲
Java:
char c = '\u9572';
System.out.println(c); // Output: 镲
JSON:
{"text": "\u9572"} // Value: 镲
Python:
char = '\u9572'
print(char) # Output: 镲
Perl:
my $char = "\x{9572}";
print $char; # Output: 镲
PHP:
$char = "\x{9572}";
echo $char; // Output: 镲
Ruby:
char = "\u{9572}"
puts char # Output: 镲
Rust:
let c = '\u{9572}';
println!("{}", c); // Output: 镲
Go:
char := '\u9572'
fmt.Printf("%c\n", char) // Output: 镲
CSS:
/* CSS content property */
.element::before {
content: "\009572"; /* 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%B2
MD5:
502ebf6505ff8ca6af2c1492afe67284
SHA1:
1336be62371d43ff744eed2285c625be2b891c22
Base64:
6ZWy