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