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