C:
char c = '\u0362';
printf("%c\n", c); // Output: ͢
JavaScript:
const char = '\u0362';
console.log(char); // Output: ͢
Java:
char c = '\u0362';
System.out.println(c); // Output: ͢
JSON:
{"text": "\u0362"} // Value: ͢
Python:
char = '\u0362'
print(char) # Output: ͢
Perl:
my $char = "\x{0362}";
print $char; # Output: ͢
PHP:
$char = "\x{0362}";
echo $char; // Output: ͢
Ruby:
char = "\u{0362}"
puts char # Output: ͢
Rust:
let c = '\u{362}';
println!("{}", c); // Output: ͢
Go:
char := '\u0362'
fmt.Printf("%c\n", char) // Output: ͢
CSS:
/* CSS content property */
.element::before {
content: "\000362"; /* 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=%CD%A2
MD5:
177dece6ac5cf1f0feee5ab719d1a603
SHA1:
d744b4d8f5dcbb49502edd98597f5d0bd3b9611d
Base64:
zaI=