C:
char c = '\u6EC0';
printf("%c\n", c); // Output: 滀
JavaScript:
const char = '\u6EC0';
console.log(char); // Output: 滀
Java:
char c = '\u6EC0';
System.out.println(c); // Output: 滀
JSON:
{"text": "\u6EC0"} // Value: 滀
Python:
char = '\u6EC0'
print(char) # Output: 滀
Perl:
my $char = "\x{6EC0}";
print $char; # Output: 滀
PHP:
$char = "\x{6EC0}";
echo $char; // Output: 滀
Ruby:
char = "\u{6EC0}"
puts char # Output: 滀
Rust:
let c = '\u{6EC0}';
println!("{}", c); // Output: 滀
Go:
char := '\u6EC0'
fmt.Printf("%c\n", char) // Output: 滀
CSS:
/* CSS content property */
.element::before {
content: "\006EC0"; /* 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%80
MD5:
8297953c71364658d5d5effa5e87829e
SHA1:
9909402a5cd589e82d2d267e92fc66ec0b9ea18d
Base64:
5ruA