C:
char c = '\u6568';
printf("%c\n", c); // Output: 敨
JavaScript:
const char = '\u6568';
console.log(char); // Output: 敨
Java:
char c = '\u6568';
System.out.println(c); // Output: 敨
JSON:
{"text": "\u6568"} // Value: 敨
Python:
char = '\u6568'
print(char) # Output: 敨
Perl:
my $char = "\x{6568}";
print $char; # Output: 敨
PHP:
$char = "\x{6568}";
echo $char; // Output: 敨
Ruby:
char = "\u{6568}"
puts char # Output: 敨
Rust:
let c = '\u{6568}';
println!("{}", c); // Output: 敨
Go:
char := '\u6568'
fmt.Printf("%c\n", char) // Output: 敨
CSS:
/* CSS content property */
.element::before {
content: "\006568"; /* 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%95%A8
MD5:
c5d6e9bd7bb6fac2e02bad5342df6fda
SHA1:
40d169738525f0a264d222149100e07f935824a9
Base64:
5pWo