C:
char c = '\u1351';
printf("%c\n", c); // Output: ፑ
JavaScript:
const char = '\u1351';
console.log(char); // Output: ፑ
Java:
char c = '\u1351';
System.out.println(c); // Output: ፑ
JSON:
{"text": "\u1351"} // Value: ፑ
Python:
char = '\u1351'
print(char) # Output: ፑ
Perl:
my $char = "\x{1351}";
print $char; # Output: ፑ
PHP:
$char = "\x{1351}";
echo $char; // Output: ፑ
Ruby:
char = "\u{1351}"
puts char # Output: ፑ
Rust:
let c = '\u{1351}';
println!("{}", c); // Output: ፑ
Go:
char := '\u1351'
fmt.Printf("%c\n", char) // Output: ፑ
CSS:
/* CSS content property */
.element::before {
content: "\001351"; /* 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=%E1%8D%91
MD5:
2bb2c1535a8e2842b8da67de5d397483
SHA1:
64e48e89a8c47366bfa104ca9cec62c793cc4a61
Base64:
4Y2R