C:
char c = '\u23AF';
printf("%c\n", c); // Output: ⎯
JavaScript:
const char = '\u23AF';
console.log(char); // Output: ⎯
Java:
char c = '\u23AF';
System.out.println(c); // Output: ⎯
JSON:
{"text": "\u23AF"} // Value: ⎯
Python:
char = '\u23AF'
print(char) # Output: ⎯
Perl:
my $char = "\x{23AF}";
print $char; # Output: ⎯
PHP:
$char = "\x{23AF}";
echo $char; // Output: ⎯
Ruby:
char = "\u{23AF}"
puts char # Output: ⎯
Rust:
let c = '\u{23AF}';
println!("{}", c); // Output: ⎯
Go:
char := '\u23AF'
fmt.Printf("%c\n", char) // Output: ⎯
CSS:
/* CSS content property */
.element::before {
content: "\0023AF"; /* 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%8E%AF
MD5:
1fee2ca1cda81330556060d20f63968a
SHA1:
887375a6e70c3c9b00f34d8b45de88421b5d39ac
Base64:
4o6v