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