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