C:
char c = '\u2310';
printf("%c\n", c); // Output: ⌐
JavaScript:
const char = '\u2310';
console.log(char); // Output: ⌐
Java:
char c = '\u2310';
System.out.println(c); // Output: ⌐
JSON:
{"text": "\u2310"} // Value: ⌐
Python:
char = '\u2310'
print(char) # Output: ⌐
Perl:
my $char = "\x{2310}";
print $char; # Output: ⌐
PHP:
$char = "\x{2310}";
echo $char; // Output: ⌐
Ruby:
char = "\u{2310}"
puts char # Output: ⌐
Rust:
let c = '\u{2310}';
println!("{}", c); // Output: ⌐
Go:
char := '\u2310'
fmt.Printf("%c\n", char) // Output: ⌐
CSS:
/* CSS content property */
.element::before {
content: "\002310"; /* 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%8C%90
MD5:
49358022630d1fe6c9053fb71cc48b6c
SHA1:
c11751568bc8bddc32a47c08513295f488188743
Base64:
4oyQ