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