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