C:
char c = '\u6CB1';
printf("%c\n", c); // Output: 沱
JavaScript:
const char = '\u6CB1';
console.log(char); // Output: 沱
Java:
char c = '\u6CB1';
System.out.println(c); // Output: 沱
JSON:
{"text": "\u6CB1"} // Value: 沱
Python:
char = '\u6CB1'
print(char) # Output: 沱
Perl:
my $char = "\x{6CB1}";
print $char; # Output: 沱
PHP:
$char = "\x{6CB1}";
echo $char; // Output: 沱
Ruby:
char = "\u{6CB1}"
puts char # Output: 沱
Rust:
let c = '\u{6CB1}';
println!("{}", c); // Output: 沱
Go:
char := '\u6CB1'
fmt.Printf("%c\n", char) // Output: 沱
CSS:
/* CSS content property */
.element::before {
content: "\006CB1"; /* 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%B2%B1
MD5:
94c54bee193cf6c53a83b074b98ac6e8
SHA1:
8cf64d4d0fbed9e05d196c150296fc9bcec0ba98
Base64:
5rKx