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