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