C:
char c = '\u29E3';
printf("%c\n", c); // Output: ⧣
JavaScript:
const char = '\u29E3';
console.log(char); // Output: ⧣
Java:
char c = '\u29E3';
System.out.println(c); // Output: ⧣
JSON:
{"text": "\u29E3"} // Value: ⧣
Python:
char = '\u29E3'
print(char) # Output: ⧣
Perl:
my $char = "\x{29E3}";
print $char; # Output: ⧣
PHP:
$char = "\x{29E3}";
echo $char; // Output: ⧣
Ruby:
char = "\u{29E3}"
puts char # Output: ⧣
Rust:
let c = '\u{29E3}';
println!("{}", c); // Output: ⧣
Go:
char := '\u29E3'
fmt.Printf("%c\n", char) // Output: ⧣
CSS:
/* CSS content property */
.element::before {
content: "\0029E3"; /* 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%A7%A3
MD5:
bf1bc47dc53863d2d3825803a653eab4
SHA1:
cf7e0069d1efe41d212415daf3ef5a09736103b3
Base64:
4qej