C:
char c = '\u6620';
printf("%c\n", c); // Output: 映
JavaScript:
const char = '\u6620';
console.log(char); // Output: 映
Java:
char c = '\u6620';
System.out.println(c); // Output: 映
JSON:
{"text": "\u6620"} // Value: 映
Python:
char = '\u6620'
print(char) # Output: 映
Perl:
my $char = "\x{6620}";
print $char; # Output: 映
PHP:
$char = "\x{6620}";
echo $char; // Output: 映
Ruby:
char = "\u{6620}"
puts char # Output: 映
Rust:
let c = '\u{6620}';
println!("{}", c); // Output: 映
Go:
char := '\u6620'
fmt.Printf("%c\n", char) // Output: 映
CSS:
/* CSS content property */
.element::before {
content: "\006620"; /* 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%98%A0
MD5:
29aa3857dd9d2b30aa8e92a510d5dc69
SHA1:
cff2b01d7efc5f49416841a1e2298199e5e3d9f1
Base64:
5pig