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