C:
char c = '\u6397';
printf("%c\n", c); // Output: 掗
JavaScript:
const char = '\u6397';
console.log(char); // Output: 掗
Java:
char c = '\u6397';
System.out.println(c); // Output: 掗
JSON:
{"text": "\u6397"} // Value: 掗
Python:
char = '\u6397'
print(char) # Output: 掗
Perl:
my $char = "\x{6397}";
print $char; # Output: 掗
PHP:
$char = "\x{6397}";
echo $char; // Output: 掗
Ruby:
char = "\u{6397}"
puts char # Output: 掗
Rust:
let c = '\u{6397}';
println!("{}", c); // Output: 掗
Go:
char := '\u6397'
fmt.Printf("%c\n", char) // Output: 掗
CSS:
/* CSS content property */
.element::before {
content: "\006397"; /* 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%97
MD5:
c04184bbd5d01eda2383b2aa8a93db32
SHA1:
b297e0ca07f1d924cafd9a8fc8acf55465a8386c
Base64:
5o6X