Unicode Finder

"💻" U+1F4BB(PERSONAL COMPUTER)

💻
U+1F4BB
بلاک کا نام
Miscellaneous Symbols and Pictographs
نام
PERSONAL COMPUTER

Programming

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

Web

CSS
\01F4BB
HtmlDecimal
💻
HtmlHexadecimal
💻
Url
%F0%9F%92%BB

Code

MD5
d0c6e45cfaa9270a545cfde683da82a3
Sha1
0f218838b9cdc6c8fe921094e4d700ad9e06f125
Base64
8J+Suw==

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F4BB"}  // Value: 💻

Python:

char = '\u1F4BB'
print(char)  # Output: 💻

Perl:

my $char = "\x{1F4BB}";
print $char;  # Output: 💻

PHP:

$char = "\x{1F4BB}";
echo $char;  // Output: 💻

Ruby:

char = "\u{1F4BB}"
puts char  # Output: 💻

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F4BB";  /* Display: 💻 */
}

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

// 💻 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%92%BB

Encodings

MD5:

d0c6e45cfaa9270a545cfde683da82a3

SHA1:

0f218838b9cdc6c8fe921094e4d700ad9e06f125

Base64:

8J+Suw==