Unicode Finder

"놑" U+B191(HANGUL SYLLABLE NOT)

U+B191
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NOT

Programming

C
\uB191
JavaScript
\uB191
Java
\uB191
Json
\uB191
Python
\uB191
Perl
\x{B191}
PHP
\x{B191}
Ruby
\u{B191}
Rust
\u{B191}
Go
\uB191

Web

CSS
\00B191
HtmlDecimal
놑
HtmlHexadecimal
놑
Url
%EB%86%91

Code

MD5
8132af896d59dfd31af558e73b67e22b
Sha1
c923a54068f4bf45ebec73ade15d4d4544da24eb
Base64
64aR

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB191';
console.log(char);  // Output: 놑

Java:

char c = '\uB191';
System.out.println(c);  // Output: 놑

JSON:

{"text": "\uB191"}  // Value: 놑

Python:

char = '\uB191'
print(char)  # Output: 놑

Perl:

my $char = "\x{B191}";
print $char;  # Output: 놑

PHP:

$char = "\x{B191}";
echo $char;  // Output: 놑

Ruby:

char = "\u{B191}"
puts char  # Output: 놑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45457;</p>  <!-- Display: 놑 -->

HTML Hexadecimal:

<p>HTML hex: &#xB191;</p>  <!-- Display: 놑 -->

URL Encoding:

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

Encodings

MD5:

8132af896d59dfd31af558e73b67e22b

SHA1:

c923a54068f4bf45ebec73ade15d4d4544da24eb

Base64:

64aR