C:
char c = '\u2C3F';
printf("%c\n", c); // Output: ⰿ
JavaScript:
const char = '\u2C3F';
console.log(char); // Output: ⰿ
Java:
char c = '\u2C3F';
System.out.println(c); // Output: ⰿ
JSON:
{"text": "\u2C3F"} // Value: ⰿ
Python:
char = '\u2C3F'
print(char) # Output: ⰿ
Perl:
my $char = "\x{2C3F}";
print $char; # Output: ⰿ
PHP:
$char = "\x{2C3F}";
echo $char; // Output: ⰿ
Ruby:
char = "\u{2C3F}"
puts char # Output: ⰿ
Rust:
let c = '\u{2C3F}';
println!("{}", c); // Output: ⰿ
Go:
char := '\u2C3F'
fmt.Printf("%c\n", char) // Output: ⰿ
CSS:
/* CSS content property */
.element::before {
content: "\002C3F"; /* 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%B0%BF
MD5:
54739f199ef22ee888810446dc7b1c00
SHA1:
63619633da44ae97e55282905df89d2f8e00ac42
Base64:
4rC/