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