Unicode Finder

"🞦" U+1F7A6(VERY HEAVY GREEK CROSS)

🞦
U+1F7A6
Название Блока
Unknown Block
Название
VERY HEAVY GREEK CROSS

Programming

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

Web

CSS
\01F7A6
HtmlDecimal
🞦
HtmlHexadecimal
🞦
Url
%F0%9F%9E%A6

Code

MD5
4bb3b24f9a5124cfe81055deff9f3d1f
Sha1
2098e626710bc5051becd753f8cd2809afee588e
Base64
8J+epg==

Примеры Использования

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F7A6"}  // Value: 🞦

Python:

char = '\u1F7A6'
print(char)  # Output: 🞦

Perl:

my $char = "\x{1F7A6}";
print $char;  # Output: 🞦

PHP:

$char = "\x{1F7A6}";
echo $char;  // Output: 🞦

Ruby:

char = "\u{1F7A6}"
puts char  # Output: 🞦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

// 🞦 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%9E%A6

Encodings

MD5:

4bb3b24f9a5124cfe81055deff9f3d1f

SHA1:

2098e626710bc5051becd753f8cd2809afee588e

Base64:

8J+epg==