C:
char c = '\u6CAE';
printf("%c\n", c); // Output: 沮
JavaScript:
const char = '\u6CAE';
console.log(char); // Output: 沮
Java:
char c = '\u6CAE';
System.out.println(c); // Output: 沮
JSON:
{"text": "\u6CAE"} // Value: 沮
Python:
char = '\u6CAE'
print(char) # Output: 沮
Perl:
my $char = "\x{6CAE}";
print $char; # Output: 沮
PHP:
$char = "\x{6CAE}";
echo $char; // Output: 沮
Ruby:
char = "\u{6CAE}"
puts char # Output: 沮
Rust:
let c = '\u{6CAE}';
println!("{}", c); // Output: 沮
Go:
char := '\u6CAE'
fmt.Printf("%c\n", char) // Output: 沮
CSS:
/* CSS content property */
.element::before {
content: "\006CAE"; /* 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%AE
MD5:
7a535e88e65850777ccdb82cb1335bbc
SHA1:
357ddc4668e55c66e3361f166901ea7afe537cf7
Base64:
5rKu