C:
char c = '\u6EC3';
printf("%c\n", c); // Output: 滃
JavaScript:
const char = '\u6EC3';
console.log(char); // Output: 滃
Java:
char c = '\u6EC3';
System.out.println(c); // Output: 滃
JSON:
{"text": "\u6EC3"} // Value: 滃
Python:
char = '\u6EC3'
print(char) # Output: 滃
Perl:
my $char = "\x{6EC3}";
print $char; # Output: 滃
PHP:
$char = "\x{6EC3}";
echo $char; // Output: 滃
Ruby:
char = "\u{6EC3}"
puts char # Output: 滃
Rust:
let c = '\u{6EC3}';
println!("{}", c); // Output: 滃
Go:
char := '\u6EC3'
fmt.Printf("%c\n", char) // Output: 滃
CSS:
/* CSS content property */
.element::before {
content: "\006EC3"; /* 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%83
MD5:
875602dbf3dcaa11be38f857d35d4fad
SHA1:
1c68592fc289e54208f510415150699ed2973a47
Base64:
5ruD