C:
char c = '\u2783';
printf("%c\n", c); // Output: ➃
JavaScript:
const char = '\u2783';
console.log(char); // Output: ➃
Java:
char c = '\u2783';
System.out.println(c); // Output: ➃
JSON:
{"text": "\u2783"} // Value: ➃
Python:
char = '\u2783'
print(char) # Output: ➃
Perl:
my $char = "\x{2783}";
print $char; # Output: ➃
PHP:
$char = "\x{2783}";
echo $char; // Output: ➃
Ruby:
char = "\u{2783}"
puts char # Output: ➃
Rust:
let c = '\u{2783}';
println!("{}", c); // Output: ➃
Go:
char := '\u2783'
fmt.Printf("%c\n", char) // Output: ➃
CSS:
/* CSS content property */
.element::before {
content: "\002783"; /* 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%9E%83
MD5:
dcc91b10113a16f80173f55a0e2a4d46
SHA1:
7070d71339b13ff8b7f67210525cf51eb250b8a2
Base64:
4p6D