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