C:
char c = '\u3013';
printf("%c\n", c); // Output: 〓
JavaScript:
const char = '\u3013';
console.log(char); // Output: 〓
Java:
char c = '\u3013';
System.out.println(c); // Output: 〓
JSON:
{"text": "\u3013"} // Value: 〓
Python:
char = '\u3013'
print(char) # Output: 〓
Perl:
my $char = "\x{3013}";
print $char; # Output: 〓
PHP:
$char = "\x{3013}";
echo $char; // Output: 〓
Ruby:
char = "\u{3013}"
puts char # Output: 〓
Rust:
let c = '\u{3013}';
println!("{}", c); // Output: 〓
Go:
char := '\u3013'
fmt.Printf("%c\n", char) // Output: 〓
CSS:
/* CSS content property */
.element::before {
content: "\003013"; /* 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=%E3%80%93
MD5:
6aaeb2d26e319c4fd0ac397306443de6
SHA1:
ff2d6e25f8c495c2b8fdcf6a5d1acc2d893825f9
Base64:
44CT