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