C:
char c = '\u2A0D';
printf("%c\n", c); // Output: ⨍
JavaScript:
const char = '\u2A0D';
console.log(char); // Output: ⨍
Java:
char c = '\u2A0D';
System.out.println(c); // Output: ⨍
JSON:
{"text": "\u2A0D"} // Value: ⨍
Python:
char = '\u2A0D'
print(char) # Output: ⨍
Perl:
my $char = "\x{2A0D}";
print $char; # Output: ⨍
PHP:
$char = "\x{2A0D}";
echo $char; // Output: ⨍
Ruby:
char = "\u{2A0D}"
puts char # Output: ⨍
Rust:
let c = '\u{2A0D}';
println!("{}", c); // Output: ⨍
Go:
char := '\u2A0D'
fmt.Printf("%c\n", char) // Output: ⨍
CSS:
/* CSS content property */
.element::before {
content: "\002A0D"; /* 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=%E2%A8%8D
MD5:
4ed4b53c7e5b4f98ec518a592d733011
SHA1:
24fab7279a35d8529512ced4d051e0de53ef1a04
Base64:
4qiN