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