C:
char c = '\u228D';
printf("%c\n", c); // Output: ⊍
JavaScript:
const char = '\u228D';
console.log(char); // Output: ⊍
Java:
char c = '\u228D';
System.out.println(c); // Output: ⊍
JSON:
{"text": "\u228D"} // Value: ⊍
Python:
char = '\u228D'
print(char) # Output: ⊍
Perl:
my $char = "\x{228D}";
print $char; # Output: ⊍
PHP:
$char = "\x{228D}";
echo $char; // Output: ⊍
Ruby:
char = "\u{228D}"
puts char # Output: ⊍
Rust:
let c = '\u{228D}';
println!("{}", c); // Output: ⊍
Go:
char := '\u228D'
fmt.Printf("%c\n", char) // Output: ⊍
CSS:
/* CSS content property */
.element::before {
content: "\00228D"; /* 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%8A%8D
MD5:
5d0e16a96b9f55034d23ddb72dd382da
SHA1:
5bdcc27c647a8a13430d87da5b8be5d5baa4f374
Base64:
4oqN