C:
char c = '\u9550';
printf("%c\n", c); // Output: 镐
JavaScript:
const char = '\u9550';
console.log(char); // Output: 镐
Java:
char c = '\u9550';
System.out.println(c); // Output: 镐
JSON:
{"text": "\u9550"} // Value: 镐
Python:
char = '\u9550'
print(char) # Output: 镐
Perl:
my $char = "\x{9550}";
print $char; # Output: 镐
PHP:
$char = "\x{9550}";
echo $char; // Output: 镐
Ruby:
char = "\u{9550}"
puts char # Output: 镐
Rust:
let c = '\u{9550}';
println!("{}", c); // Output: 镐
Go:
char := '\u9550'
fmt.Printf("%c\n", char) // Output: 镐
CSS:
/* CSS content property */
.element::before {
content: "\009550"; /* 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%90
MD5:
c4c332756b25ae5a2b9f1e0940e83cec
SHA1:
b69e5ff643cc24c8777e427cd902eb2170eed758
Base64:
6ZWQ