C:
char c = '\u74A1';
printf("%c\n", c); // Output: 璡
JavaScript:
const char = '\u74A1';
console.log(char); // Output: 璡
Java:
char c = '\u74A1';
System.out.println(c); // Output: 璡
JSON:
{"text": "\u74A1"} // Value: 璡
Python:
char = '\u74A1'
print(char) # Output: 璡
Perl:
my $char = "\x{74A1}";
print $char; # Output: 璡
PHP:
$char = "\x{74A1}";
echo $char; // Output: 璡
Ruby:
char = "\u{74A1}"
puts char # Output: 璡
Rust:
let c = '\u{74A1}';
println!("{}", c); // Output: 璡
Go:
char := '\u74A1'
fmt.Printf("%c\n", char) // Output: 璡
CSS:
/* CSS content property */
.element::before {
content: "\0074A1"; /* 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%92%A1
MD5:
3935f6abbddd1e1a1421065795490131
SHA1:
bb62ffc6e3dfcccae6dbb2b3cad84f3466b21571
Base64:
55Kh