C:
char c = '\u6350';
printf("%c\n", c); // Output: 捐
JavaScript:
const char = '\u6350';
console.log(char); // Output: 捐
Java:
char c = '\u6350';
System.out.println(c); // Output: 捐
JSON:
{"text": "\u6350"} // Value: 捐
Python:
char = '\u6350'
print(char) # Output: 捐
Perl:
my $char = "\x{6350}";
print $char; # Output: 捐
PHP:
$char = "\x{6350}";
echo $char; // Output: 捐
Ruby:
char = "\u{6350}"
puts char # Output: 捐
Rust:
let c = '\u{6350}';
println!("{}", c); // Output: 捐
Go:
char := '\u6350'
fmt.Printf("%c\n", char) // Output: 捐
CSS:
/* CSS content property */
.element::before {
content: "\006350"; /* 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%8D%90
MD5:
55db8cd4a9c26300f100c1c44936e396
SHA1:
88bbe142a107785a9e94a625bab1bd6a94f59069
Base64:
5o2Q