Unicode Finder

"呱" U+5471(CJK UNIFIED IDEOGRAPH-5471)

U+5471
Nazwa Bloku
CJK Unified Ideographs
Nazwa
CJK UNIFIED IDEOGRAPH-5471

Programming

C
\u5471
JavaScript
\u5471
Java
\u5471
Json
\u5471
Python
\u5471
Perl
\x{5471}
PHP
\x{5471}
Ruby
\u{5471}
Rust
\u{5471}
Go
\u5471

Web

CSS
\005471
HtmlDecimal
呱
HtmlHexadecimal
呱
Url
%E5%91%B1

Code

MD5
118486fb3edc5521edfdb031457a124d
Sha1
fb954c753cd740d2cc20f59e7c2497f3179da683
Base64
5ZGx

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u5471"}  // Value: 呱

Python:

char = '\u5471'
print(char)  # Output: 呱

Perl:

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

PHP:

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

Ruby:

char = "\u{5471}"
puts char  # Output: 呱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

// 呱 URL encoding
https://unicodefinder.com/search.php?query=%E5%91%B1

Encodings

MD5:

118486fb3edc5521edfdb031457a124d

SHA1:

fb954c753cd740d2cc20f59e7c2497f3179da683

Base64:

5ZGx