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