C:
char c = '\u2043';
printf("%c\n", c); // Output: ⁃
JavaScript:
const char = '\u2043';
console.log(char); // Output: ⁃
Java:
char c = '\u2043';
System.out.println(c); // Output: ⁃
JSON:
{"text": "\u2043"} // Value: ⁃
Python:
char = '\u2043'
print(char) # Output: ⁃
Perl:
my $char = "\x{2043}";
print $char; # Output: ⁃
PHP:
$char = "\x{2043}";
echo $char; // Output: ⁃
Ruby:
char = "\u{2043}"
puts char # Output: ⁃
Rust:
let c = '\u{2043}';
println!("{}", c); // Output: ⁃
Go:
char := '\u2043'
fmt.Printf("%c\n", char) // Output: ⁃
CSS:
/* CSS content property */
.element::before {
content: "\002043"; /* 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%81%83
MD5:
052abc19fa8eda357d84e5d19760a0d5
SHA1:
b9d0e5eab07ff7327b19a6c8d5f6fb6197e35bf5
Base64:
4oGD