C:
char c = '\u6845';
printf("%c\n", c); // Output: 桅
JavaScript:
const char = '\u6845';
console.log(char); // Output: 桅
Java:
char c = '\u6845';
System.out.println(c); // Output: 桅
JSON:
{"text": "\u6845"} // Value: 桅
Python:
char = '\u6845'
print(char) # Output: 桅
Perl:
my $char = "\x{6845}";
print $char; # Output: 桅
PHP:
$char = "\x{6845}";
echo $char; // Output: 桅
Ruby:
char = "\u{6845}"
puts char # Output: 桅
Rust:
let c = '\u{6845}';
println!("{}", c); // Output: 桅
Go:
char := '\u6845'
fmt.Printf("%c\n", char) // Output: 桅
CSS:
/* CSS content property */
.element::before {
content: "\006845"; /* 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%85
MD5:
130e05b83edf92091220a78f9c516897
SHA1:
e12bec17f4794e50c95bf2a120ac3168ab0c06c8
Base64:
5qGF