C:
char c = '\u6458';
printf("%c\n", c); // Output: 摘
JavaScript:
const char = '\u6458';
console.log(char); // Output: 摘
Java:
char c = '\u6458';
System.out.println(c); // Output: 摘
JSON:
{"text": "\u6458"} // Value: 摘
Python:
char = '\u6458'
print(char) # Output: 摘
Perl:
my $char = "\x{6458}";
print $char; # Output: 摘
PHP:
$char = "\x{6458}";
echo $char; // Output: 摘
Ruby:
char = "\u{6458}"
puts char # Output: 摘
Rust:
let c = '\u{6458}';
println!("{}", c); // Output: 摘
Go:
char := '\u6458'
fmt.Printf("%c\n", char) // Output: 摘
CSS:
/* CSS content property */
.element::before {
content: "\006458"; /* 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%91%98
MD5:
90e5c05e5bb3e4bd7b30218355532821
SHA1:
4fb9028037d6154ee0dbed787d940554682faf9d
Base64:
5pGY