C:
char c = '\u02C5';
printf("%c\n", c); // Output: ˅
JavaScript:
const char = '\u02C5';
console.log(char); // Output: ˅
Java:
char c = '\u02C5';
System.out.println(c); // Output: ˅
JSON:
{"text": "\u02C5"} // Value: ˅
Python:
char = '\u02C5'
print(char) # Output: ˅
Perl:
my $char = "\x{02C5}";
print $char; # Output: ˅
PHP:
$char = "\x{02C5}";
echo $char; // Output: ˅
Ruby:
char = "\u{02C5}"
puts char # Output: ˅
Rust:
let c = '\u{2C5}';
println!("{}", c); // Output: ˅
Go:
char := '\u02C5'
fmt.Printf("%c\n", char) // Output: ˅
CSS:
/* CSS content property */
.element::before {
content: "\0002C5"; /* 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=%CB%85
MD5:
eb3f9e802e71a15c8299f0b74435b3e1
SHA1:
55a7f6a61ad4cfddfe05360e90df22fdce7badac
Base64:
y4U=