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