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