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