C:
char c = '\u7382';
printf("%c\n", c); // Output: 玂
JavaScript:
const char = '\u7382';
console.log(char); // Output: 玂
Java:
char c = '\u7382';
System.out.println(c); // Output: 玂
JSON:
{"text": "\u7382"} // Value: 玂
Python:
char = '\u7382'
print(char) # Output: 玂
Perl:
my $char = "\x{7382}";
print $char; # Output: 玂
PHP:
$char = "\x{7382}";
echo $char; // Output: 玂
Ruby:
char = "\u{7382}"
puts char # Output: 玂
Rust:
let c = '\u{7382}';
println!("{}", c); // Output: 玂
Go:
char := '\u7382'
fmt.Printf("%c\n", char) // Output: 玂
CSS:
/* CSS content property */
.element::before {
content: "\007382"; /* 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%82
MD5:
33dbdd47a5b53787ffc1baf0d2413ba5
SHA1:
4765a52851b89123cbdbadd0af68e9cbc93cd24b
Base64:
546C