C:
char c = '\u6EC8';
printf("%c\n", c); // Output: 滈
JavaScript:
const char = '\u6EC8';
console.log(char); // Output: 滈
Java:
char c = '\u6EC8';
System.out.println(c); // Output: 滈
JSON:
{"text": "\u6EC8"} // Value: 滈
Python:
char = '\u6EC8'
print(char) # Output: 滈
Perl:
my $char = "\x{6EC8}";
print $char; # Output: 滈
PHP:
$char = "\x{6EC8}";
echo $char; // Output: 滈
Ruby:
char = "\u{6EC8}"
puts char # Output: 滈
Rust:
let c = '\u{6EC8}';
println!("{}", c); // Output: 滈
Go:
char := '\u6EC8'
fmt.Printf("%c\n", char) // Output: 滈
CSS:
/* CSS content property */
.element::before {
content: "\006EC8"; /* 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%BB%88
MD5:
7851dbff6a45228b8a7a855ea74ba2b6
SHA1:
87962cf547404e7a9b1e58a32ab2e19c7ed9c682
Base64:
5ruI