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