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