C:
char c = '\u2A1C';
printf("%c\n", c); // Output: ⨜
JavaScript:
const char = '\u2A1C';
console.log(char); // Output: ⨜
Java:
char c = '\u2A1C';
System.out.println(c); // Output: ⨜
JSON:
{"text": "\u2A1C"} // Value: ⨜
Python:
char = '\u2A1C'
print(char) # Output: ⨜
Perl:
my $char = "\x{2A1C}";
print $char; # Output: ⨜
PHP:
$char = "\x{2A1C}";
echo $char; // Output: ⨜
Ruby:
char = "\u{2A1C}"
puts char # Output: ⨜
Rust:
let c = '\u{2A1C}';
println!("{}", c); // Output: ⨜
Go:
char := '\u2A1C'
fmt.Printf("%c\n", char) // Output: ⨜
CSS:
/* CSS content property */
.element::before {
content: "\002A1C"; /* 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%9C
MD5:
c9e08506d21e497c45862f60a9f882f3
SHA1:
348c9047a69946b7275e3581a144f3b2da681f6f
Base64:
4qic