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