C:
char c = '\u0254';
printf("%c\n", c); // Output: ɔ
JavaScript:
const char = '\u0254';
console.log(char); // Output: ɔ
Java:
char c = '\u0254';
System.out.println(c); // Output: ɔ
JSON:
{"text": "\u0254"} // Value: ɔ
Python:
char = '\u0254'
print(char) # Output: ɔ
Perl:
my $char = "\x{0254}";
print $char; # Output: ɔ
PHP:
$char = "\x{0254}";
echo $char; // Output: ɔ
Ruby:
char = "\u{0254}"
puts char # Output: ɔ
Rust:
let c = '\u{254}';
println!("{}", c); // Output: ɔ
Go:
char := '\u0254'
fmt.Printf("%c\n", char) // Output: ɔ
CSS:
/* CSS content property */
.element::before {
content: "\000254"; /* 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%94
MD5:
468f4b0bd79e2e7637fccd2dd22ad9b7
SHA1:
988b6afcbcc021156127d5c4c9bdffe5e98e2b70
Base64:
yZQ=