C:
char c = '\u6569';
printf("%c\n", c); // Output: 敩
JavaScript:
const char = '\u6569';
console.log(char); // Output: 敩
Java:
char c = '\u6569';
System.out.println(c); // Output: 敩
JSON:
{"text": "\u6569"} // Value: 敩
Python:
char = '\u6569'
print(char) # Output: 敩
Perl:
my $char = "\x{6569}";
print $char; # Output: 敩
PHP:
$char = "\x{6569}";
echo $char; // Output: 敩
Ruby:
char = "\u{6569}"
puts char # Output: 敩
Rust:
let c = '\u{6569}';
println!("{}", c); // Output: 敩
Go:
char := '\u6569'
fmt.Printf("%c\n", char) // Output: 敩
CSS:
/* CSS content property */
.element::before {
content: "\006569"; /* 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%A9
MD5:
aef9576aaa1ff25553ea84922a7ccec6
SHA1:
e7f3ac281a42cb4da3a11482da944a800e155401
Base64:
5pWp