C:
char c = '\u6861';
printf("%c\n", c); // Output: 桡
JavaScript:
const char = '\u6861';
console.log(char); // Output: 桡
Java:
char c = '\u6861';
System.out.println(c); // Output: 桡
JSON:
{"text": "\u6861"} // Value: 桡
Python:
char = '\u6861'
print(char) # Output: 桡
Perl:
my $char = "\x{6861}";
print $char; # Output: 桡
PHP:
$char = "\x{6861}";
echo $char; // Output: 桡
Ruby:
char = "\u{6861}"
puts char # Output: 桡
Rust:
let c = '\u{6861}';
println!("{}", c); // Output: 桡
Go:
char := '\u6861'
fmt.Printf("%c\n", char) // Output: 桡
CSS:
/* CSS content property */
.element::before {
content: "\006861"; /* 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%A1
MD5:
d349f99c667853c9ad204a07b7baf35b
SHA1:
bfd7a8eea503fca260c700bd0d5a24211f9222f9
Base64:
5qGh