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