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