C:
char c = '\u1BBD';
printf("%c\n", c); // Output: ᮽ
JavaScript:
const char = '\u1BBD';
console.log(char); // Output: ᮽ
Java:
char c = '\u1BBD';
System.out.println(c); // Output: ᮽ
JSON:
{"text": "\u1BBD"} // Value: ᮽ
Python:
char = '\u1BBD'
print(char) # Output: ᮽ
Perl:
my $char = "\x{1BBD}";
print $char; # Output: ᮽ
PHP:
$char = "\x{1BBD}";
echo $char; // Output: ᮽ
Ruby:
char = "\u{1BBD}"
puts char # Output: ᮽ
Rust:
let c = '\u{1BBD}';
println!("{}", c); // Output: ᮽ
Go:
char := '\u1BBD'
fmt.Printf("%c\n", char) // Output: ᮽ
CSS:
/* CSS content property */
.element::before {
content: "\001BBD"; /* 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%AE%BD
MD5:
01f1688e8494785ea16b3b5ecec0f991
SHA1:
ac596e9f99b4c0c745d73819f1a1d01e54215d16
Base64:
4a69