C:
char c = '\u070C';
printf("%c\n", c); // Output: ܌
JavaScript:
const char = '\u070C';
console.log(char); // Output: ܌
Java:
char c = '\u070C';
System.out.println(c); // Output: ܌
JSON:
{"text": "\u070C"} // Value: ܌
Python:
char = '\u070C'
print(char) # Output: ܌
Perl:
my $char = "\x{070C}";
print $char; # Output: ܌
PHP:
$char = "\x{070C}";
echo $char; // Output: ܌
Ruby:
char = "\u{070C}"
puts char # Output: ܌
Rust:
let c = '\u{70C}';
println!("{}", c); // Output: ܌
Go:
char := '\u070C'
fmt.Printf("%c\n", char) // Output: ܌
CSS:
/* CSS content property */
.element::before {
content: "\00070C"; /* 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=%DC%8C
MD5:
e0e0f7d40782a36c8e4a1322b13f83c4
SHA1:
3d9042dbe502c9eaed1a16d61d88cb45d40f09cb
Base64:
3Iw=