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