C:
char c = '\u2448';
printf("%c\n", c); // Output: ⑈
JavaScript:
const char = '\u2448';
console.log(char); // Output: ⑈
Java:
char c = '\u2448';
System.out.println(c); // Output: ⑈
JSON:
{"text": "\u2448"} // Value: ⑈
Python:
char = '\u2448'
print(char) # Output: ⑈
Perl:
my $char = "\x{2448}";
print $char; # Output: ⑈
PHP:
$char = "\x{2448}";
echo $char; // Output: ⑈
Ruby:
char = "\u{2448}"
puts char # Output: ⑈
Rust:
let c = '\u{2448}';
println!("{}", c); // Output: ⑈
Go:
char := '\u2448'
fmt.Printf("%c\n", char) // Output: ⑈
CSS:
/* CSS content property */
.element::before {
content: "\002448"; /* 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%88
MD5:
761a8043e5a1dd616aff36c379ef6240
SHA1:
98f47812bfba56fe137a8383661eda84f3cdaac1
Base64:
4pGI