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