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