C:
char c = '\u0255';
printf("%c\n", c); // Output: ɕ
JavaScript:
const char = '\u0255';
console.log(char); // Output: ɕ
Java:
char c = '\u0255';
System.out.println(c); // Output: ɕ
JSON:
{"text": "\u0255"} // Value: ɕ
Python:
char = '\u0255'
print(char) # Output: ɕ
Perl:
my $char = "\x{0255}";
print $char; # Output: ɕ
PHP:
$char = "\x{0255}";
echo $char; // Output: ɕ
Ruby:
char = "\u{0255}"
puts char # Output: ɕ
Rust:
let c = '\u{255}';
println!("{}", c); // Output: ɕ
Go:
char := '\u0255'
fmt.Printf("%c\n", char) // Output: ɕ
CSS:
/* CSS content property */
.element::before {
content: "\000255"; /* 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%95
MD5:
053f9b18798b4f4258eb12f97f1448f6
SHA1:
de9d374479f20be075a1893b20bf5d7a638caa8c
Base64:
yZU=