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