C:
char c = '\u6380';
printf("%c\n", c); // Output: 掀
JavaScript:
const char = '\u6380';
console.log(char); // Output: 掀
Java:
char c = '\u6380';
System.out.println(c); // Output: 掀
JSON:
{"text": "\u6380"} // Value: 掀
Python:
char = '\u6380'
print(char) # Output: 掀
Perl:
my $char = "\x{6380}";
print $char; # Output: 掀
PHP:
$char = "\x{6380}";
echo $char; // Output: 掀
Ruby:
char = "\u{6380}"
puts char # Output: 掀
Rust:
let c = '\u{6380}';
println!("{}", c); // Output: 掀
Go:
char := '\u6380'
fmt.Printf("%c\n", char) // Output: 掀
CSS:
/* CSS content property */
.element::before {
content: "\006380"; /* 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%8E%80
MD5:
1cf7c43abb34613b77ee4def84ce411f
SHA1:
a63331d5bc36ff1421665fdbef217116014b7b28
Base64:
5o6A