C:
char c = '\u6EC2';
printf("%c\n", c); // Output: 滂
JavaScript:
const char = '\u6EC2';
console.log(char); // Output: 滂
Java:
char c = '\u6EC2';
System.out.println(c); // Output: 滂
JSON:
{"text": "\u6EC2"} // Value: 滂
Python:
char = '\u6EC2'
print(char) # Output: 滂
Perl:
my $char = "\x{6EC2}";
print $char; # Output: 滂
PHP:
$char = "\x{6EC2}";
echo $char; // Output: 滂
Ruby:
char = "\u{6EC2}"
puts char # Output: 滂
Rust:
let c = '\u{6EC2}';
println!("{}", c); // Output: 滂
Go:
char := '\u6EC2'
fmt.Printf("%c\n", char) // Output: 滂
CSS:
/* CSS content property */
.element::before {
content: "\006EC2"; /* 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%82
MD5:
15816595d3ac4fbe6abe55b3640c7b11
SHA1:
0d8dc7412b25cb1d245c06bc9384a10a8ac973a4
Base64:
5ruC