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