C:
char c = '\u2330';
printf("%c\n", c); // Output: ⌰
JavaScript:
const char = '\u2330';
console.log(char); // Output: ⌰
Java:
char c = '\u2330';
System.out.println(c); // Output: ⌰
JSON:
{"text": "\u2330"} // Value: ⌰
Python:
char = '\u2330'
print(char) # Output: ⌰
Perl:
my $char = "\x{2330}";
print $char; # Output: ⌰
PHP:
$char = "\x{2330}";
echo $char; // Output: ⌰
Ruby:
char = "\u{2330}"
puts char # Output: ⌰
Rust:
let c = '\u{2330}';
println!("{}", c); // Output: ⌰
Go:
char := '\u2330'
fmt.Printf("%c\n", char) // Output: ⌰
CSS:
/* CSS content property */
.element::before {
content: "\002330"; /* 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%B0
MD5:
86d4ce8becfa2b138a00adae088d03e3
SHA1:
f54805814eb44bb31a5aa90513a4e1b41b46975b
Base64:
4oyw