C:
char c = '\u6844';
printf("%c\n", c); // Output: 桄
JavaScript:
const char = '\u6844';
console.log(char); // Output: 桄
Java:
char c = '\u6844';
System.out.println(c); // Output: 桄
JSON:
{"text": "\u6844"} // Value: 桄
Python:
char = '\u6844'
print(char) # Output: 桄
Perl:
my $char = "\x{6844}";
print $char; # Output: 桄
PHP:
$char = "\x{6844}";
echo $char; // Output: 桄
Ruby:
char = "\u{6844}"
puts char # Output: 桄
Rust:
let c = '\u{6844}';
println!("{}", c); // Output: 桄
Go:
char := '\u6844'
fmt.Printf("%c\n", char) // Output: 桄
CSS:
/* CSS content property */
.element::before {
content: "\006844"; /* 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%84
MD5:
01efc40077bd9b51d510e5d845ef3370
SHA1:
f689bc98f7cc77036e1fd55e87bbb2d8f00b2169
Base64:
5qGE