Unicode Finder

" " U+0020(SPACE)

U+0020
Block Name
Basic Latin
Name
SPACE

Programming

C
\u0020
JavaScript
\u0020
Java
\u0020
Json
\u0020
Python
\u0020
Perl
\x{0020}
PHP
\x{0020}
Ruby
\u{0020}
Rust
\u{20}
Go
\u0020

Web

CSS
\000020
HtmlDecimal
 
HtmlHexadecimal
 
Url
%20

Code

MD5
7215ee9c7d9dc229d2921a40e899ec5f
Sha1
b858cb282617fb0956d960215c8e84d1ccf909c6
Base64
IA==

Usage Examples

Programming Languages

C:

char c = '\u0020';
printf("%c\n", c);  // Output:  

JavaScript:

const char = '\u0020';
console.log(char);  // Output:  

Java:

char c = '\u0020';
System.out.println(c);  // Output:  

JSON:

{"text": "\u0020"}  // Value:  

Python:

char = '\u0020'
print(char)  # Output:  

Perl:

my $char = "\x{0020}";
print $char;  # Output:  

PHP:

$char = "\x{0020}";
echo $char;  // Output:  

Ruby:

char = "\u{0020}"
puts char  # Output:  

Rust:

let c = '\u{20}';
println!("{}", c);  // Output:  

Go:

char := '\u0020'
fmt.Printf("%c\n", char)  // Output:  

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000020";  /* Display:   */
}

HTML Decimal:

<p>HTML decimal: &#32;</p>  <!-- Display:   -->

HTML Hexadecimal:

<p>HTML hex: &#x0020;</p>  <!-- Display:   -->

URL Encoding:

//   URL encoding
https://unicodefinder.com/search.php?query=%20

Encodings

MD5:

7215ee9c7d9dc229d2921a40e899ec5f

SHA1:

b858cb282617fb0956d960215c8e84d1ccf909c6

Base64:

IA==