C:
char c = '\u0735';
printf("%c\n", c); // Output: ܵ
JavaScript:
const char = '\u0735';
console.log(char); // Output: ܵ
Java:
char c = '\u0735';
System.out.println(c); // Output: ܵ
JSON:
{"text": "\u0735"} // Value: ܵ
Python:
char = '\u0735'
print(char) # Output: ܵ
Perl:
my $char = "\x{0735}";
print $char; # Output: ܵ
PHP:
$char = "\x{0735}";
echo $char; // Output: ܵ
Ruby:
char = "\u{0735}"
puts char # Output: ܵ
Rust:
let c = '\u{735}';
println!("{}", c); // Output: ܵ
Go:
char := '\u0735'
fmt.Printf("%c\n", char) // Output: ܵ
CSS:
/* CSS content property */
.element::before {
content: "\000735"; /* 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%B5
MD5:
38f4d5e8e58259eb5ae3b3a4efa8dda2
SHA1:
51e26b4457021896001d6093d6186f458e2d0ada
Base64:
3LU=