C:
char c = '\u6564';
printf("%c\n", c); // Output: 敤
JavaScript:
const char = '\u6564';
console.log(char); // Output: 敤
Java:
char c = '\u6564';
System.out.println(c); // Output: 敤
JSON:
{"text": "\u6564"} // Value: 敤
Python:
char = '\u6564'
print(char) # Output: 敤
Perl:
my $char = "\x{6564}";
print $char; # Output: 敤
PHP:
$char = "\x{6564}";
echo $char; // Output: 敤
Ruby:
char = "\u{6564}"
puts char # Output: 敤
Rust:
let c = '\u{6564}';
println!("{}", c); // Output: 敤
Go:
char := '\u6564'
fmt.Printf("%c\n", char) // Output: 敤
CSS:
/* CSS content property */
.element::before {
content: "\006564"; /* 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%A4
MD5:
8b126b1bca6854bdbb0e74091468bd80
SHA1:
eb5ee4dde55093873927e223ab3d5d98c1c22481
Base64:
5pWk