C:
char c = '\u6857';
printf("%c\n", c); // Output: 桗
JavaScript:
const char = '\u6857';
console.log(char); // Output: 桗
Java:
char c = '\u6857';
System.out.println(c); // Output: 桗
JSON:
{"text": "\u6857"} // Value: 桗
Python:
char = '\u6857'
print(char) # Output: 桗
Perl:
my $char = "\x{6857}";
print $char; # Output: 桗
PHP:
$char = "\x{6857}";
echo $char; // Output: 桗
Ruby:
char = "\u{6857}"
puts char # Output: 桗
Rust:
let c = '\u{6857}';
println!("{}", c); // Output: 桗
Go:
char := '\u6857'
fmt.Printf("%c\n", char) // Output: 桗
CSS:
/* CSS content property */
.element::before {
content: "\006857"; /* 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%97
MD5:
00b86dc56b622bdeeee829aa636e6754
SHA1:
451a38bb966e1f4d524f229e3fa9d69605f6474f
Base64:
5qGX