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