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