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