C:
char c = '\u22CD';
printf("%c\n", c); // Output: ⋍
JavaScript:
const char = '\u22CD';
console.log(char); // Output: ⋍
Java:
char c = '\u22CD';
System.out.println(c); // Output: ⋍
JSON:
{"text": "\u22CD"} // Value: ⋍
Python:
char = '\u22CD'
print(char) # Output: ⋍
Perl:
my $char = "\x{22CD}";
print $char; # Output: ⋍
PHP:
$char = "\x{22CD}";
echo $char; // Output: ⋍
Ruby:
char = "\u{22CD}"
puts char # Output: ⋍
Rust:
let c = '\u{22CD}';
println!("{}", c); // Output: ⋍
Go:
char := '\u22CD'
fmt.Printf("%c\n", char) // Output: ⋍
CSS:
/* CSS content property */
.element::before {
content: "\0022CD"; /* 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%8B%8D
MD5:
dc44cb2524390759d19c6b1ed7213419
SHA1:
f83c088f05d58dd4bca5a41409fb65d07d048e0c
Base64:
4ouN