C:
char c = '\u2781';
printf("%c\n", c); // Output: ➁
JavaScript:
const char = '\u2781';
console.log(char); // Output: ➁
Java:
char c = '\u2781';
System.out.println(c); // Output: ➁
JSON:
{"text": "\u2781"} // Value: ➁
Python:
char = '\u2781'
print(char) # Output: ➁
Perl:
my $char = "\x{2781}";
print $char; # Output: ➁
PHP:
$char = "\x{2781}";
echo $char; // Output: ➁
Ruby:
char = "\u{2781}"
puts char # Output: ➁
Rust:
let c = '\u{2781}';
println!("{}", c); // Output: ➁
Go:
char := '\u2781'
fmt.Printf("%c\n", char) // Output: ➁
CSS:
/* CSS content property */
.element::before {
content: "\002781"; /* 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%81
MD5:
44e4de5ff2a11f25cb09fbd33ddb223b
SHA1:
d0f0f6f37adb4954fb39cbd58b6e27211e5836dc
Base64:
4p6B