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