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