C:
char c = '\u7982';
printf("%c\n", c); // Output: 禂
JavaScript:
const char = '\u7982';
console.log(char); // Output: 禂
Java:
char c = '\u7982';
System.out.println(c); // Output: 禂
JSON:
{"text": "\u7982"} // Value: 禂
Python:
char = '\u7982'
print(char) # Output: 禂
Perl:
my $char = "\x{7982}";
print $char; # Output: 禂
PHP:
$char = "\x{7982}";
echo $char; // Output: 禂
Ruby:
char = "\u{7982}"
puts char # Output: 禂
Rust:
let c = '\u{7982}';
println!("{}", c); // Output: 禂
Go:
char := '\u7982'
fmt.Printf("%c\n", char) // Output: 禂
CSS:
/* CSS content property */
.element::before {
content: "\007982"; /* 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=%E7%A6%82
MD5:
49f17b6ca989f8e1ce34ff66a198a302
SHA1:
99b9ed5cea256bc874676f4a694786dabb7e8771
Base64:
56aC