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