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