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