C:
char c = '\u6855';
printf("%c\n", c); // Output: 桕
JavaScript:
const char = '\u6855';
console.log(char); // Output: 桕
Java:
char c = '\u6855';
System.out.println(c); // Output: 桕
JSON:
{"text": "\u6855"} // Value: 桕
Python:
char = '\u6855'
print(char) # Output: 桕
Perl:
my $char = "\x{6855}";
print $char; # Output: 桕
PHP:
$char = "\x{6855}";
echo $char; // Output: 桕
Ruby:
char = "\u{6855}"
puts char # Output: 桕
Rust:
let c = '\u{6855}';
println!("{}", c); // Output: 桕
Go:
char := '\u6855'
fmt.Printf("%c\n", char) // Output: 桕
CSS:
/* CSS content property */
.element::before {
content: "\006855"; /* 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%95
MD5:
64621a9520c60b37c55add99d098eae5
SHA1:
dcf1f80880d56026031f7cdd0728dd063e35304c
Base64:
5qGV