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