C:
char c = '\u73B1';
printf("%c\n", c); // Output: 玱
JavaScript:
const char = '\u73B1';
console.log(char); // Output: 玱
Java:
char c = '\u73B1';
System.out.println(c); // Output: 玱
JSON:
{"text": "\u73B1"} // Value: 玱
Python:
char = '\u73B1'
print(char) # Output: 玱
Perl:
my $char = "\x{73B1}";
print $char; # Output: 玱
PHP:
$char = "\x{73B1}";
echo $char; // Output: 玱
Ruby:
char = "\u{73B1}"
puts char # Output: 玱
Rust:
let c = '\u{73B1}';
println!("{}", c); // Output: 玱
Go:
char := '\u73B1'
fmt.Printf("%c\n", char) // Output: 玱
CSS:
/* CSS content property */
.element::before {
content: "\0073B1"; /* 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%8E%B1
MD5:
8857b5260c5e4aaf3e7b621bf1183b3a
SHA1:
382896f9f997de9c72c21e098cbf39396e0da175
Base64:
546x