Unicode Finder

"๐Ÿ–ฅ" U+1F5A5(DESKTOP COMPUTER)

๐Ÿ–ฅ
U+1F5A5
Block Name
Miscellaneous Symbols and Pictographs
Name
DESKTOP COMPUTER

Programming

C
\u1F5A5
JavaScript
\u1F5A5
Java
\u1F5A5
Json
\u1F5A5
Python
\u1F5A5
Perl
\x{1F5A5}
PHP
\x{1F5A5}
Ruby
\u{1F5A5}
Rust
\u{1F5A5}
Go
\u1F5A5

Web

CSS
\01F5A5
HtmlDecimal
🖥
HtmlHexadecimal
🖥
Url
%F0%9F%96%A5

Code

MD5
1bd61a06e184b7464fc85e54565fcd30
Sha1
3122902dba6ebf3859e2ab2d6d2b9e6e87236090
Base64
8J+WpQ==

Usage Examples

Programming Languages

C:

char c = '\u1F5A5';
printf("%c\n", c);  // Output: ๐Ÿ–ฅ

JavaScript:

const char = '\u1F5A5';
console.log(char);  // Output: ๐Ÿ–ฅ

Java:

char c = '\u1F5A5';
System.out.println(c);  // Output: ๐Ÿ–ฅ

JSON:

{"text": "\u1F5A5"}  // Value: ๐Ÿ–ฅ

Python:

char = '\u1F5A5'
print(char)  # Output: ๐Ÿ–ฅ

Perl:

my $char = "\x{1F5A5}";
print $char;  # Output: ๐Ÿ–ฅ

PHP:

$char = "\x{1F5A5}";
echo $char;  // Output: ๐Ÿ–ฅ

Ruby:

char = "\u{1F5A5}"
puts char  # Output: ๐Ÿ–ฅ

Rust:

let c = '\u{1F5A5}';
println!("{}", c);  // Output: ๐Ÿ–ฅ

Go:

char := '\u1F5A5'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ–ฅ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F5A5";  /* Display: ๐Ÿ–ฅ */
}

HTML Decimal:

<p>HTML decimal: &#128421;</p>  <!-- Display: ๐Ÿ–ฅ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5A5;</p>  <!-- Display: ๐Ÿ–ฅ -->

URL Encoding:

// ๐Ÿ–ฅ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%96%A5

Encodings

MD5:

1bd61a06e184b7464fc85e54565fcd30

SHA1:

3122902dba6ebf3859e2ab2d6d2b9e6e87236090

Base64:

8J+WpQ==