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