C:
char c = '\u0281';
printf("%c\n", c); // Output: ʁ
JavaScript:
const char = '\u0281';
console.log(char); // Output: ʁ
Java:
char c = '\u0281';
System.out.println(c); // Output: ʁ
JSON:
{"text": "\u0281"} // Value: ʁ
Python:
char = '\u0281'
print(char) # Output: ʁ
Perl:
my $char = "\x{0281}";
print $char; # Output: ʁ
PHP:
$char = "\x{0281}";
echo $char; // Output: ʁ
Ruby:
char = "\u{0281}"
puts char # Output: ʁ
Rust:
let c = '\u{281}';
println!("{}", c); // Output: ʁ
Go:
char := '\u0281'
fmt.Printf("%c\n", char) // Output: ʁ
CSS:
/* CSS content property */
.element::before {
content: "\000281"; /* 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%81
MD5:
797de87867a46493057f65e41bb1eb77
SHA1:
2e8b48a90fc6ff2c1fa716612e36e1a88e1d77cd
Base64:
yoE=