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