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