C:
char c = '\u0280';
printf("%c\n", c); // Output: ʀ
JavaScript:
const char = '\u0280';
console.log(char); // Output: ʀ
Java:
char c = '\u0280';
System.out.println(c); // Output: ʀ
JSON:
{"text": "\u0280"} // Value: ʀ
Python:
char = '\u0280'
print(char) # Output: ʀ
Perl:
my $char = "\x{0280}";
print $char; # Output: ʀ
PHP:
$char = "\x{0280}";
echo $char; // Output: ʀ
Ruby:
char = "\u{0280}"
puts char # Output: ʀ
Rust:
let c = '\u{280}';
println!("{}", c); // Output: ʀ
Go:
char := '\u0280'
fmt.Printf("%c\n", char) // Output: ʀ
CSS:
/* CSS content property */
.element::before {
content: "\000280"; /* 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=%CA%80
MD5:
cf910142af2a257321e30285d75866ce
SHA1:
13d00b5f7ab238af2333d48d002fd171c61e9ba5
Base64:
yoA=