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