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