C:
char c = '\u6858';
printf("%c\n", c); // Output: 桘
JavaScript:
const char = '\u6858';
console.log(char); // Output: 桘
Java:
char c = '\u6858';
System.out.println(c); // Output: 桘
JSON:
{"text": "\u6858"} // Value: 桘
Python:
char = '\u6858'
print(char) # Output: 桘
Perl:
my $char = "\x{6858}";
print $char; # Output: 桘
PHP:
$char = "\x{6858}";
echo $char; // Output: 桘
Ruby:
char = "\u{6858}"
puts char # Output: 桘
Rust:
let c = '\u{6858}';
println!("{}", c); // Output: 桘
Go:
char := '\u6858'
fmt.Printf("%c\n", char) // Output: 桘
CSS:
/* CSS content property */
.element::before {
content: "\006858"; /* 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%A1%98
MD5:
fa4dfecf8dccb47709bd16297d105343
SHA1:
a8ee6ace9890662bd5f214c2a8ecb24c696b4fd4
Base64:
5qGY