C:
char c = '\u7F61';
printf("%c\n", c); // Output: 罡
JavaScript:
const char = '\u7F61';
console.log(char); // Output: 罡
Java:
char c = '\u7F61';
System.out.println(c); // Output: 罡
JSON:
{"text": "\u7F61"} // Value: 罡
Python:
char = '\u7F61'
print(char) # Output: 罡
Perl:
my $char = "\x{7F61}";
print $char; # Output: 罡
PHP:
$char = "\x{7F61}";
echo $char; // Output: 罡
Ruby:
char = "\u{7F61}"
puts char # Output: 罡
Rust:
let c = '\u{7F61}';
println!("{}", c); // Output: 罡
Go:
char := '\u7F61'
fmt.Printf("%c\n", char) // Output: 罡
CSS:
/* CSS content property */
.element::before {
content: "\007F61"; /* 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%BD%A1
MD5:
fbcc78f5faad2f2e08c85da36e4a5d9b
SHA1:
479435f76430d21b0f1029cb5c5ea4ea4fc3cfa1
Base64:
572h