C:
char c = '\u9328';
printf("%c\n", c); // Output: 錨
JavaScript:
const char = '\u9328';
console.log(char); // Output: 錨
Java:
char c = '\u9328';
System.out.println(c); // Output: 錨
JSON:
{"text": "\u9328"} // Value: 錨
Python:
char = '\u9328'
print(char) # Output: 錨
Perl:
my $char = "\x{9328}";
print $char; # Output: 錨
PHP:
$char = "\x{9328}";
echo $char; // Output: 錨
Ruby:
char = "\u{9328}"
puts char # Output: 錨
Rust:
let c = '\u{9328}';
println!("{}", c); // Output: 錨
Go:
char := '\u9328'
fmt.Printf("%c\n", char) // Output: 錨
CSS:
/* CSS content property */
.element::before {
content: "\009328"; /* 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%8C%A8
MD5:
4343e07ca02e64c698df2048f7a75533
SHA1:
88eb6784ccb541691981555c13d533229dd7c66f
Base64:
6Yyo