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