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