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