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