C:
char c = '\u7003';
printf("%c\n", c); // Output: 瀃
JavaScript:
const char = '\u7003';
console.log(char); // Output: 瀃
Java:
char c = '\u7003';
System.out.println(c); // Output: 瀃
JSON:
{"text": "\u7003"} // Value: 瀃
Python:
char = '\u7003'
print(char) # Output: 瀃
Perl:
my $char = "\x{7003}";
print $char; # Output: 瀃
PHP:
$char = "\x{7003}";
echo $char; // Output: 瀃
Ruby:
char = "\u{7003}"
puts char # Output: 瀃
Rust:
let c = '\u{7003}';
println!("{}", c); // Output: 瀃
Go:
char := '\u7003'
fmt.Printf("%c\n", char) // Output: 瀃
CSS:
/* CSS content property */
.element::before {
content: "\007003"; /* 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%80%83
MD5:
3d1c78be5ce6ed2bc534e609a8195b10
SHA1:
24faa3945d790b85fe3e639d2e17513a703fe7ed
Base64:
54CD