C:
char c = '\u2DF2';
printf("%c\n", c); // Output: ⷲ
JavaScript:
const char = '\u2DF2';
console.log(char); // Output: ⷲ
Java:
char c = '\u2DF2';
System.out.println(c); // Output: ⷲ
JSON:
{"text": "\u2DF2"} // Value: ⷲ
Python:
char = '\u2DF2'
print(char) # Output: ⷲ
Perl:
my $char = "\x{2DF2}";
print $char; # Output: ⷲ
PHP:
$char = "\x{2DF2}";
echo $char; // Output: ⷲ
Ruby:
char = "\u{2DF2}"
puts char # Output: ⷲ
Rust:
let c = '\u{2DF2}';
println!("{}", c); // Output: ⷲ
Go:
char := '\u2DF2'
fmt.Printf("%c\n", char) // Output: ⷲ
CSS:
/* CSS content property */
.element::before {
content: "\002DF2"; /* 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%B7%B2
MD5:
8daff28462b3b369e8b992a3b760f38e
SHA1:
29d083f45ac9a23894b49984a2995da93573282d
Base64:
4rey