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