Unicode Finder

"呢" U+5462(CJK UNIFIED IDEOGRAPH-5462)

U+5462
블록 이름
CJK Unified Ideographs
이름
CJK UNIFIED IDEOGRAPH-5462

Programming

C
\u5462
JavaScript
\u5462
Java
\u5462
Json
\u5462
Python
\u5462
Perl
\x{5462}
PHP
\x{5462}
Ruby
\u{5462}
Rust
\u{5462}
Go
\u5462

Web

CSS
\005462
HtmlDecimal
呢
HtmlHexadecimal
呢
Url
%E5%91%A2

Code

MD5
65ac5a7b1552f2804ccfd86ac71571de
Sha1
dcf66dcd6087fd64f27243d3abe790b8dceef210
Base64
5ZGi

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u5462';
console.log(char);  // Output: 呢

Java:

char c = '\u5462';
System.out.println(c);  // Output: 呢

JSON:

{"text": "\u5462"}  // Value: 呢

Python:

char = '\u5462'
print(char)  # Output: 呢

Perl:

my $char = "\x{5462}";
print $char;  # Output: 呢

PHP:

$char = "\x{5462}";
echo $char;  // Output: 呢

Ruby:

char = "\u{5462}"
puts char  # Output: 呢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005462";  /* Display: 呢 */
}

HTML Decimal:

<p>HTML decimal: &#21602;</p>  <!-- Display: 呢 -->

HTML Hexadecimal:

<p>HTML hex: &#x5462;</p>  <!-- Display: 呢 -->

URL Encoding:

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

Encodings

MD5:

65ac5a7b1552f2804ccfd86ac71571de

SHA1:

dcf66dcd6087fd64f27243d3abe790b8dceef210

Base64:

5ZGi