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