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