C:
char c = '\u3020';
printf("%c\n", c); // Output: 〠
JavaScript:
const char = '\u3020';
console.log(char); // Output: 〠
Java:
char c = '\u3020';
System.out.println(c); // Output: 〠
JSON:
{"text": "\u3020"} // Value: 〠
Python:
char = '\u3020'
print(char) # Output: 〠
Perl:
my $char = "\x{3020}";
print $char; # Output: 〠
PHP:
$char = "\x{3020}";
echo $char; // Output: 〠
Ruby:
char = "\u{3020}"
puts char # Output: 〠
Rust:
let c = '\u{3020}';
println!("{}", c); // Output: 〠
Go:
char := '\u3020'
fmt.Printf("%c\n", char) // Output: 〠
CSS:
/* CSS content property */
.element::before {
content: "\003020"; /* 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%A0
MD5:
dd96b6ba237c7d75c753556cc0b5d540
SHA1:
182ce8068853be648d238058730236d8284c5d71
Base64:
44Cg