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