Unicode Finder

"난" U+B09C(HANGUL SYLLABLE NAN)

U+B09C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NAN

Programming

C
\uB09C
JavaScript
\uB09C
Java
\uB09C
Json
\uB09C
Python
\uB09C
Perl
\x{B09C}
PHP
\x{B09C}
Ruby
\u{B09C}
Rust
\u{B09C}
Go
\uB09C

Web

CSS
\00B09C
HtmlDecimal
난
HtmlHexadecimal
난
Url
%EB%82%9C

Code

MD5
13aa5cffe27f57fc5da76f06dfc7418f
Sha1
52091d1896c7f1c5b3fa3f1d63cfcbfef054e5d8
Base64
64Kc

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB09C';
console.log(char);  // Output: 난

Java:

char c = '\uB09C';
System.out.println(c);  // Output: 난

JSON:

{"text": "\uB09C"}  // Value: 난

Python:

char = '\uB09C'
print(char)  # Output: 난

Perl:

my $char = "\x{B09C}";
print $char;  # Output: 난

PHP:

$char = "\x{B09C}";
echo $char;  // Output: 난

Ruby:

char = "\u{B09C}"
puts char  # Output: 난

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45212;</p>  <!-- Display: 난 -->

HTML Hexadecimal:

<p>HTML hex: &#xB09C;</p>  <!-- Display: 난 -->

URL Encoding:

// 난 URL encoding
https://unicodefinder.com/search.php?query=%EB%82%9C

Encodings

MD5:

13aa5cffe27f57fc5da76f06dfc7418f

SHA1:

52091d1896c7f1c5b3fa3f1d63cfcbfef054e5d8

Base64:

64Kc