Unicode Finder

"눚" U+B21A(HANGUL SYLLABLE NUJ)

U+B21A
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NUJ

Programming

C
\uB21A
JavaScript
\uB21A
Java
\uB21A
Json
\uB21A
Python
\uB21A
Perl
\x{B21A}
PHP
\x{B21A}
Ruby
\u{B21A}
Rust
\u{B21A}
Go
\uB21A

Web

CSS
\00B21A
HtmlDecimal
눚
HtmlHexadecimal
눚
Url
%EB%88%9A

Code

MD5
3a98f904ee873e54327a7b4464fae69e
Sha1
2563a8381ed7e25bfc36683fba91b3bb19a61528
Base64
64ia

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB21A';
console.log(char);  // Output: 눚

Java:

char c = '\uB21A';
System.out.println(c);  // Output: 눚

JSON:

{"text": "\uB21A"}  // Value: 눚

Python:

char = '\uB21A'
print(char)  # Output: 눚

Perl:

my $char = "\x{B21A}";
print $char;  # Output: 눚

PHP:

$char = "\x{B21A}";
echo $char;  // Output: 눚

Ruby:

char = "\u{B21A}"
puts char  # Output: 눚

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00B21A";  /* Display: 눚 */
}

HTML Decimal:

<p>HTML decimal: &#45594;</p>  <!-- Display: 눚 -->

HTML Hexadecimal:

<p>HTML hex: &#xB21A;</p>  <!-- Display: 눚 -->

URL Encoding:

// 눚 URL encoding
https://unicodefinder.com/search.php?query=%EB%88%9A

Encodings

MD5:

3a98f904ee873e54327a7b4464fae69e

SHA1:

2563a8381ed7e25bfc36683fba91b3bb19a61528

Base64:

64ia