C:
char c = '\u0236';
printf("%c\n", c); // Output: ȶ
JavaScript:
const char = '\u0236';
console.log(char); // Output: ȶ
Java:
char c = '\u0236';
System.out.println(c); // Output: ȶ
JSON:
{"text": "\u0236"} // Value: ȶ
Python:
char = '\u0236'
print(char) # Output: ȶ
Perl:
my $char = "\x{0236}";
print $char; # Output: ȶ
PHP:
$char = "\x{0236}";
echo $char; // Output: ȶ
Ruby:
char = "\u{0236}"
puts char # Output: ȶ
Rust:
let c = '\u{236}';
println!("{}", c); // Output: ȶ
Go:
char := '\u0236'
fmt.Printf("%c\n", char) // Output: ȶ
CSS:
/* CSS content property */
.element::before {
content: "\000236"; /* 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=%C8%B6
MD5:
55cf7ac7588e8ab7a81e8f91175da06f
SHA1:
e2a4f01203bc003cd576d977064b47a91c1c8ec6
Base64:
yLY=