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