C:
char c = '\u2DB3';
printf("%c\n", c); // Output: ⶳ
JavaScript:
const char = '\u2DB3';
console.log(char); // Output: ⶳ
Java:
char c = '\u2DB3';
System.out.println(c); // Output: ⶳ
JSON:
{"text": "\u2DB3"} // Value: ⶳ
Python:
char = '\u2DB3'
print(char) # Output: ⶳ
Perl:
my $char = "\x{2DB3}";
print $char; # Output: ⶳ
PHP:
$char = "\x{2DB3}";
echo $char; // Output: ⶳ
Ruby:
char = "\u{2DB3}"
puts char # Output: ⶳ
Rust:
let c = '\u{2DB3}';
println!("{}", c); // Output: ⶳ
Go:
char := '\u2DB3'
fmt.Printf("%c\n", char) // Output: ⶳ
CSS:
/* CSS content property */
.element::before {
content: "\002DB3"; /* 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%B6%B3
MD5:
bcb83a9d03abd8c481ca8690f2ec17fa
SHA1:
9add4391b472f751d4ae923feedeb15861bf1737
Base64:
4raz