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