C:
char c = '\u13BF';
printf("%c\n", c); // Output: Ꮏ
JavaScript:
const char = '\u13BF';
console.log(char); // Output: Ꮏ
Java:
char c = '\u13BF';
System.out.println(c); // Output: Ꮏ
JSON:
{"text": "\u13BF"} // Value: Ꮏ
Python:
char = '\u13BF'
print(char) # Output: Ꮏ
Perl:
my $char = "\x{13BF}";
print $char; # Output: Ꮏ
PHP:
$char = "\x{13BF}";
echo $char; // Output: Ꮏ
Ruby:
char = "\u{13BF}"
puts char # Output: Ꮏ
Rust:
let c = '\u{13BF}';
println!("{}", c); // Output: Ꮏ
Go:
char := '\u13BF'
fmt.Printf("%c\n", char) // Output: Ꮏ
CSS:
/* CSS content property */
.element::before {
content: "\0013BF"; /* 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%8E%BF
MD5:
9dfe2b17824ed2104e45ba532f8834cd
SHA1:
0a898934bcc5876997ea2e566c77cb74fe04508d
Base64:
4Y6/