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