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