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