C:
char c = '\u0261';
printf("%c\n", c); // Output: ɡ
JavaScript:
const char = '\u0261';
console.log(char); // Output: ɡ
Java:
char c = '\u0261';
System.out.println(c); // Output: ɡ
JSON:
{"text": "\u0261"} // Value: ɡ
Python:
char = '\u0261'
print(char) # Output: ɡ
Perl:
my $char = "\x{0261}";
print $char; # Output: ɡ
PHP:
$char = "\x{0261}";
echo $char; // Output: ɡ
Ruby:
char = "\u{0261}"
puts char # Output: ɡ
Rust:
let c = '\u{261}';
println!("{}", c); // Output: ɡ
Go:
char := '\u0261'
fmt.Printf("%c\n", char) // Output: ɡ
CSS:
/* CSS content property */
.element::before {
content: "\000261"; /* 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=%C9%A1
MD5:
c5637d68402a0409bbf96ce1c6b007a8
SHA1:
b7148263773f4713abacb74379a7b9abe417698e
Base64:
yaE=