C:
char c = '\u0263';
printf("%c\n", c); // Output: ɣ
JavaScript:
const char = '\u0263';
console.log(char); // Output: ɣ
Java:
char c = '\u0263';
System.out.println(c); // Output: ɣ
JSON:
{"text": "\u0263"} // Value: ɣ
Python:
char = '\u0263'
print(char) # Output: ɣ
Perl:
my $char = "\x{0263}";
print $char; # Output: ɣ
PHP:
$char = "\x{0263}";
echo $char; // Output: ɣ
Ruby:
char = "\u{0263}"
puts char # Output: ɣ
Rust:
let c = '\u{263}';
println!("{}", c); // Output: ɣ
Go:
char := '\u0263'
fmt.Printf("%c\n", char) // Output: ɣ
CSS:
/* CSS content property */
.element::before {
content: "\000263"; /* 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%A3
MD5:
822f969da273b75be1fa15b5c7e470fa
SHA1:
2f2572674fc9146bfbba98c802b12dc033a8e4a3
Base64:
yaM=