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