C:
char c = '\u1BCF';
printf("%c\n", c); // Output: ᯏ
JavaScript:
const char = '\u1BCF';
console.log(char); // Output: ᯏ
Java:
char c = '\u1BCF';
System.out.println(c); // Output: ᯏ
JSON:
{"text": "\u1BCF"} // Value: ᯏ
Python:
char = '\u1BCF'
print(char) # Output: ᯏ
Perl:
my $char = "\x{1BCF}";
print $char; # Output: ᯏ
PHP:
$char = "\x{1BCF}";
echo $char; // Output: ᯏ
Ruby:
char = "\u{1BCF}"
puts char # Output: ᯏ
Rust:
let c = '\u{1BCF}';
println!("{}", c); // Output: ᯏ
Go:
char := '\u1BCF'
fmt.Printf("%c\n", char) // Output: ᯏ
CSS:
/* CSS content property */
.element::before {
content: "\001BCF"; /* 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=%E1%AF%8F
MD5:
d0842bffdeaaa4efa5c5cefc65db95bb
SHA1:
668495a6b9cc4e41a53fa76ded16c89eb4aa1638
Base64:
4a+P