C:
char c = '\u23CA';
printf("%c\n", c); // Output: ⏊
JavaScript:
const char = '\u23CA';
console.log(char); // Output: ⏊
Java:
char c = '\u23CA';
System.out.println(c); // Output: ⏊
JSON:
{"text": "\u23CA"} // Value: ⏊
Python:
char = '\u23CA'
print(char) # Output: ⏊
Perl:
my $char = "\x{23CA}";
print $char; # Output: ⏊
PHP:
$char = "\x{23CA}";
echo $char; // Output: ⏊
Ruby:
char = "\u{23CA}"
puts char # Output: ⏊
Rust:
let c = '\u{23CA}';
println!("{}", c); // Output: ⏊
Go:
char := '\u23CA'
fmt.Printf("%c\n", char) // Output: ⏊
CSS:
/* CSS content property */
.element::before {
content: "\0023CA"; /* 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%8F%8A
MD5:
649f18d8449ab0df9dbd02a63e26ce5e
SHA1:
bd54c7ce83d37b5b96f0878b61e8fdf5d5fe66f2
Base64:
4o+K