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