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