C:
char c = '\u6747';
printf("%c\n", c); // Output: 杇
JavaScript:
const char = '\u6747';
console.log(char); // Output: 杇
Java:
char c = '\u6747';
System.out.println(c); // Output: 杇
JSON:
{"text": "\u6747"} // Value: 杇
Python:
char = '\u6747'
print(char) # Output: 杇
Perl:
my $char = "\x{6747}";
print $char; # Output: 杇
PHP:
$char = "\x{6747}";
echo $char; // Output: 杇
Ruby:
char = "\u{6747}"
puts char # Output: 杇
Rust:
let c = '\u{6747}';
println!("{}", c); // Output: 杇
Go:
char := '\u6747'
fmt.Printf("%c\n", char) // Output: 杇
CSS:
/* CSS content property */
.element::before {
content: "\006747"; /* 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%87
MD5:
cb13220c57a3c48f9747eb92c9fcdb33
SHA1:
8141393360ff2987c96a89e9932dcda056e1bdb8
Base64:
5p2H