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