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