C:
char c = '\u289A';
printf("%c\n", c); // Output: ⢚
JavaScript:
const char = '\u289A';
console.log(char); // Output: ⢚
Java:
char c = '\u289A';
System.out.println(c); // Output: ⢚
JSON:
{"text": "\u289A"} // Value: ⢚
Python:
char = '\u289A'
print(char) # Output: ⢚
Perl:
my $char = "\x{289A}";
print $char; # Output: ⢚
PHP:
$char = "\x{289A}";
echo $char; // Output: ⢚
Ruby:
char = "\u{289A}"
puts char # Output: ⢚
Rust:
let c = '\u{289A}';
println!("{}", c); // Output: ⢚
Go:
char := '\u289A'
fmt.Printf("%c\n", char) // Output: ⢚
CSS:
/* CSS content property */
.element::before {
content: "\00289A"; /* 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%A2%9A
MD5:
8b132dae8d63b51802cda95332578f27
SHA1:
f604128bb62f44aacfadf7d6e82abea666531d4a
Base64:
4qKa