Unicode Finder

"놁" U+B181(HANGUL SYLLABLE NOLG)

U+B181
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NOLG

Programming

C
\uB181
JavaScript
\uB181
Java
\uB181
Json
\uB181
Python
\uB181
Perl
\x{B181}
PHP
\x{B181}
Ruby
\u{B181}
Rust
\u{B181}
Go
\uB181

Web

CSS
\00B181
HtmlDecimal
놁
HtmlHexadecimal
놁
Url
%EB%86%81

Code

MD5
87ae513f3685c9b6847c8f0548e0382d
Sha1
4c6b1da20ffbdefe76b5c86c601be42ca39e0027
Base64
64aB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB181';
console.log(char);  // Output: 놁

Java:

char c = '\uB181';
System.out.println(c);  // Output: 놁

JSON:

{"text": "\uB181"}  // Value: 놁

Python:

char = '\uB181'
print(char)  # Output: 놁

Perl:

my $char = "\x{B181}";
print $char;  # Output: 놁

PHP:

$char = "\x{B181}";
echo $char;  // Output: 놁

Ruby:

char = "\u{B181}"
puts char  # Output: 놁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45441;</p>  <!-- Display: 놁 -->

HTML Hexadecimal:

<p>HTML hex: &#xB181;</p>  <!-- Display: 놁 -->

URL Encoding:

// 놁 URL encoding
https://unicodefinder.com/search.php?query=%EB%86%81

Encodings

MD5:

87ae513f3685c9b6847c8f0548e0382d

SHA1:

4c6b1da20ffbdefe76b5c86c601be42ca39e0027

Base64:

64aB