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