C:
char c = '\u26BF';
printf("%c\n", c); // Output: ⚿
JavaScript:
const char = '\u26BF';
console.log(char); // Output: ⚿
Java:
char c = '\u26BF';
System.out.println(c); // Output: ⚿
JSON:
{"text": "\u26BF"} // Value: ⚿
Python:
char = '\u26BF'
print(char) # Output: ⚿
Perl:
my $char = "\x{26BF}";
print $char; # Output: ⚿
PHP:
$char = "\x{26BF}";
echo $char; // Output: ⚿
Ruby:
char = "\u{26BF}"
puts char # Output: ⚿
Rust:
let c = '\u{26BF}';
println!("{}", c); // Output: ⚿
Go:
char := '\u26BF'
fmt.Printf("%c\n", char) // Output: ⚿
CSS:
/* CSS content property */
.element::before {
content: "\0026BF"; /* 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%9A%BF
MD5:
0a2d09438bdb2db425381018a0d8c658
SHA1:
ba50afc0692f9029276d5c3574dc83b3db96d430
Base64:
4pq/