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