C:
char c = '\u018B';
printf("%c\n", c); // Output: Ƌ
JavaScript:
const char = '\u018B';
console.log(char); // Output: Ƌ
Java:
char c = '\u018B';
System.out.println(c); // Output: Ƌ
JSON:
{"text": "\u018B"} // Value: Ƌ
Python:
char = '\u018B'
print(char) # Output: Ƌ
Perl:
my $char = "\x{018B}";
print $char; # Output: Ƌ
PHP:
$char = "\x{018B}";
echo $char; // Output: Ƌ
Ruby:
char = "\u{018B}"
puts char # Output: Ƌ
Rust:
let c = '\u{18B}';
println!("{}", c); // Output: Ƌ
Go:
char := '\u018B'
fmt.Printf("%c\n", char) // Output: Ƌ
CSS:
/* CSS content property */
.element::before {
content: "\00018B"; /* 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=%C6%8B
MD5:
42ad7feba40b7933366e291f6d1ad8d4
SHA1:
594aee44fc306a739d06b0bb05f7a494815db08e
Base64:
xos=