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