C:
char c = '\u0210';
printf("%c\n", c); // Output: Ȑ
JavaScript:
const char = '\u0210';
console.log(char); // Output: Ȑ
Java:
char c = '\u0210';
System.out.println(c); // Output: Ȑ
JSON:
{"text": "\u0210"} // Value: Ȑ
Python:
char = '\u0210'
print(char) # Output: Ȑ
Perl:
my $char = "\x{0210}";
print $char; # Output: Ȑ
PHP:
$char = "\x{0210}";
echo $char; // Output: Ȑ
Ruby:
char = "\u{0210}"
puts char # Output: Ȑ
Rust:
let c = '\u{210}';
println!("{}", c); // Output: Ȑ
Go:
char := '\u0210'
fmt.Printf("%c\n", char) // Output: Ȑ
CSS:
/* CSS content property */
.element::before {
content: "\000210"; /* 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%90
MD5:
85f8c6ff89696468d0f4e3245cc7a955
SHA1:
d184d22faa26ed02e96372d3b922156c503246d3
Base64:
yJA=