Unicode Finder

"놎" U+B18E(HANGUL SYLLABLE NOJ)

U+B18E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NOJ

Programming

C
\uB18E
JavaScript
\uB18E
Java
\uB18E
Json
\uB18E
Python
\uB18E
Perl
\x{B18E}
PHP
\x{B18E}
Ruby
\u{B18E}
Rust
\u{B18E}
Go
\uB18E

Web

CSS
\00B18E
HtmlDecimal
놎
HtmlHexadecimal
놎
Url
%EB%86%8E

Code

MD5
a1751ca82ec62bf41fa3ecfa3dbae264
Sha1
c88d9e421d15087ebef6a61d910063dea9b9f0ed
Base64
64aO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB18E';
console.log(char);  // Output: 놎

Java:

char c = '\uB18E';
System.out.println(c);  // Output: 놎

JSON:

{"text": "\uB18E"}  // Value: 놎

Python:

char = '\uB18E'
print(char)  # Output: 놎

Perl:

my $char = "\x{B18E}";
print $char;  # Output: 놎

PHP:

$char = "\x{B18E}";
echo $char;  // Output: 놎

Ruby:

char = "\u{B18E}"
puts char  # Output: 놎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45454;</p>  <!-- Display: 놎 -->

HTML Hexadecimal:

<p>HTML hex: &#xB18E;</p>  <!-- Display: 놎 -->

URL Encoding:

// 놎 URL encoding
https://unicodefinder.com/search.php?query=%EB%86%8E

Encodings

MD5:

a1751ca82ec62bf41fa3ecfa3dbae264

SHA1:

c88d9e421d15087ebef6a61d910063dea9b9f0ed

Base64:

64aO