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