C:
char c = '\u29BE';
printf("%c\n", c); // Output: ⦾
JavaScript:
const char = '\u29BE';
console.log(char); // Output: ⦾
Java:
char c = '\u29BE';
System.out.println(c); // Output: ⦾
JSON:
{"text": "\u29BE"} // Value: ⦾
Python:
char = '\u29BE'
print(char) # Output: ⦾
Perl:
my $char = "\x{29BE}";
print $char; # Output: ⦾
PHP:
$char = "\x{29BE}";
echo $char; // Output: ⦾
Ruby:
char = "\u{29BE}"
puts char # Output: ⦾
Rust:
let c = '\u{29BE}';
println!("{}", c); // Output: ⦾
Go:
char := '\u29BE'
fmt.Printf("%c\n", char) // Output: ⦾
CSS:
/* CSS content property */
.element::before {
content: "\0029BE"; /* 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%A6%BE
MD5:
fc1f97e5c908363ab56a1eca18c7eb81
SHA1:
d82f757005d31ad159a4ef0bb93f159b29c05420
Base64:
4qa+