C:
char c = '\u036E';
printf("%c\n", c); // Output: ͮ
JavaScript:
const char = '\u036E';
console.log(char); // Output: ͮ
Java:
char c = '\u036E';
System.out.println(c); // Output: ͮ
JSON:
{"text": "\u036E"} // Value: ͮ
Python:
char = '\u036E'
print(char) # Output: ͮ
Perl:
my $char = "\x{036E}";
print $char; # Output: ͮ
PHP:
$char = "\x{036E}";
echo $char; // Output: ͮ
Ruby:
char = "\u{036E}"
puts char # Output: ͮ
Rust:
let c = '\u{36E}';
println!("{}", c); // Output: ͮ
Go:
char := '\u036E'
fmt.Printf("%c\n", char) // Output: ͮ
CSS:
/* CSS content property */
.element::before {
content: "\00036E"; /* 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%AE
MD5:
6f2365270613056ebcc9a9cbb15fd2ab
SHA1:
ee4b116d982860cfafeec203ead356265fbb9657
Base64:
za4=