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