Unicode Finder

"🙿" U+1F67F(REVERSE CHECKER BOARD)

🙿
U+1F67F
بلاک کا نام
Unknown Block
نام
REVERSE CHECKER BOARD

Programming

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

Web

CSS
\01F67F
HtmlDecimal
🙿
HtmlHexadecimal
🙿
Url
%F0%9F%99%BF

Code

MD5
6540df59d372540e57264de02651d87e
Sha1
6d5b30e5bdde2f3ad9bcd89bdfdc7ce3f1966bf9
Base64
8J+Zvw==

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

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F67F"}  // Value: 🙿

Python:

char = '\u1F67F'
print(char)  # Output: 🙿

Perl:

my $char = "\x{1F67F}";
print $char;  # Output: 🙿

PHP:

$char = "\x{1F67F}";
echo $char;  // Output: 🙿

Ruby:

char = "\u{1F67F}"
puts char  # Output: 🙿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

// 🙿 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%99%BF

Encodings

MD5:

6540df59d372540e57264de02651d87e

SHA1:

6d5b30e5bdde2f3ad9bcd89bdfdc7ce3f1966bf9

Base64:

8J+Zvw==