C:
char c = '\u2449';
printf("%c\n", c); // Output: ⑉
JavaScript:
const char = '\u2449';
console.log(char); // Output: ⑉
Java:
char c = '\u2449';
System.out.println(c); // Output: ⑉
JSON:
{"text": "\u2449"} // Value: ⑉
Python:
char = '\u2449'
print(char) # Output: ⑉
Perl:
my $char = "\x{2449}";
print $char; # Output: ⑉
PHP:
$char = "\x{2449}";
echo $char; // Output: ⑉
Ruby:
char = "\u{2449}"
puts char # Output: ⑉
Rust:
let c = '\u{2449}';
println!("{}", c); // Output: ⑉
Go:
char := '\u2449'
fmt.Printf("%c\n", char) // Output: ⑉
CSS:
/* CSS content property */
.element::before {
content: "\002449"; /* 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%91%89
MD5:
cc7b1d5e7425c1884f02200ddbdf7863
SHA1:
ac7775b5dcb9b977f8338d645ca41f29ab2da036
Base64:
4pGJ