C:
char c = '\u2818';
printf("%c\n", c); // Output: ⠘
JavaScript:
const char = '\u2818';
console.log(char); // Output: ⠘
Java:
char c = '\u2818';
System.out.println(c); // Output: ⠘
JSON:
{"text": "\u2818"} // Value: ⠘
Python:
char = '\u2818'
print(char) # Output: ⠘
Perl:
my $char = "\x{2818}";
print $char; # Output: ⠘
PHP:
$char = "\x{2818}";
echo $char; // Output: ⠘
Ruby:
char = "\u{2818}"
puts char # Output: ⠘
Rust:
let c = '\u{2818}';
println!("{}", c); // Output: ⠘
Go:
char := '\u2818'
fmt.Printf("%c\n", char) // Output: ⠘
CSS:
/* CSS content property */
.element::before {
content: "\002818"; /* 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%A0%98
MD5:
1b2c4c1cf0a0c65110f1e0cf676553b4
SHA1:
aa6b2244f5bef41e2c45f2a7b86e5f502d27f40a
Base64:
4qCY