C:
char c = '\u6745';
printf("%c\n", c); // Output: 杅
JavaScript:
const char = '\u6745';
console.log(char); // Output: 杅
Java:
char c = '\u6745';
System.out.println(c); // Output: 杅
JSON:
{"text": "\u6745"} // Value: 杅
Python:
char = '\u6745'
print(char) # Output: 杅
Perl:
my $char = "\x{6745}";
print $char; # Output: 杅
PHP:
$char = "\x{6745}";
echo $char; // Output: 杅
Ruby:
char = "\u{6745}"
puts char # Output: 杅
Rust:
let c = '\u{6745}';
println!("{}", c); // Output: 杅
Go:
char := '\u6745'
fmt.Printf("%c\n", char) // Output: 杅
CSS:
/* CSS content property */
.element::before {
content: "\006745"; /* 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%9D%85
MD5:
2b03166e3d8aeb9d0d68d52773ed7dfd
SHA1:
aac68e681b226a02706ca0d22a7f2f41df609a73
Base64:
5p2F