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