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