C:
char c = '\u016C';
printf("%c\n", c); // Output: Ŭ
JavaScript:
const char = '\u016C';
console.log(char); // Output: Ŭ
Java:
char c = '\u016C';
System.out.println(c); // Output: Ŭ
JSON:
{"text": "\u016C"} // Value: Ŭ
Python:
char = '\u016C'
print(char) # Output: Ŭ
Perl:
my $char = "\x{016C}";
print $char; # Output: Ŭ
PHP:
$char = "\x{016C}";
echo $char; // Output: Ŭ
Ruby:
char = "\u{016C}"
puts char # Output: Ŭ
Rust:
let c = '\u{16C}';
println!("{}", c); // Output: Ŭ
Go:
char := '\u016C'
fmt.Printf("%c\n", char) // Output: Ŭ
CSS:
/* CSS content property */
.element::before {
content: "\00016C"; /* 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=%C5%AC
MD5:
ac76c61699a67ef59eebdbb20d898b03
SHA1:
7bb766404c646a1cde4e262399d778fecfbed295
Base64:
xaw=