C:
char c = '\u6CAA';
printf("%c\n", c); // Output: 沪
JavaScript:
const char = '\u6CAA';
console.log(char); // Output: 沪
Java:
char c = '\u6CAA';
System.out.println(c); // Output: 沪
JSON:
{"text": "\u6CAA"} // Value: 沪
Python:
char = '\u6CAA'
print(char) # Output: 沪
Perl:
my $char = "\x{6CAA}";
print $char; # Output: 沪
PHP:
$char = "\x{6CAA}";
echo $char; // Output: 沪
Ruby:
char = "\u{6CAA}"
puts char # Output: 沪
Rust:
let c = '\u{6CAA}';
println!("{}", c); // Output: 沪
Go:
char := '\u6CAA'
fmt.Printf("%c\n", char) // Output: 沪
CSS:
/* CSS content property */
.element::before {
content: "\006CAA"; /* 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=%E6%B2%AA
MD5:
0f60d57b259b11dcddccfbb6d8379bd0
SHA1:
e64092cef4528fcd203283314c39df6e3817d33b
Base64:
5rKq