C:
char c = '\u01AB';
printf("%c\n", c); // Output: ƫ
JavaScript:
const char = '\u01AB';
console.log(char); // Output: ƫ
Java:
char c = '\u01AB';
System.out.println(c); // Output: ƫ
JSON:
{"text": "\u01AB"} // Value: ƫ
Python:
char = '\u01AB'
print(char) # Output: ƫ
Perl:
my $char = "\x{01AB}";
print $char; # Output: ƫ
PHP:
$char = "\x{01AB}";
echo $char; // Output: ƫ
Ruby:
char = "\u{01AB}"
puts char # Output: ƫ
Rust:
let c = '\u{1AB}';
println!("{}", c); // Output: ƫ
Go:
char := '\u01AB'
fmt.Printf("%c\n", char) // Output: ƫ
CSS:
/* CSS content property */
.element::before {
content: "\0001AB"; /* 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%AB
MD5:
06e33521d37c43cd89e38dd0a977685d
SHA1:
d33604391ebea865b1b540a4f520d22745d8b5a1
Base64:
xqs=