Unicode Finder

"뇬" U+B1EC(HANGUL SYLLABLE NYON)

U+B1EC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYON

Programming

C
\uB1EC
JavaScript
\uB1EC
Java
\uB1EC
Json
\uB1EC
Python
\uB1EC
Perl
\x{B1EC}
PHP
\x{B1EC}
Ruby
\u{B1EC}
Rust
\u{B1EC}
Go
\uB1EC

Web

CSS
\00B1EC
HtmlDecimal
뇬
HtmlHexadecimal
뇬
Url
%EB%87%AC

Code

MD5
fc901cc2b894f28ce99dd192402c84b9
Sha1
8bf50bf3b5fee281f7e51466143f85a166a27d1b
Base64
64es

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB1EC';
console.log(char);  // Output: 뇬

Java:

char c = '\uB1EC';
System.out.println(c);  // Output: 뇬

JSON:

{"text": "\uB1EC"}  // Value: 뇬

Python:

char = '\uB1EC'
print(char)  # Output: 뇬

Perl:

my $char = "\x{B1EC}";
print $char;  # Output: 뇬

PHP:

$char = "\x{B1EC}";
echo $char;  // Output: 뇬

Ruby:

char = "\u{B1EC}"
puts char  # Output: 뇬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45548;</p>  <!-- Display: 뇬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB1EC;</p>  <!-- Display: 뇬 -->

URL Encoding:

// 뇬 URL encoding
https://unicodefinder.com/search.php?query=%EB%87%AC

Encodings

MD5:

fc901cc2b894f28ce99dd192402c84b9

SHA1:

8bf50bf3b5fee281f7e51466143f85a166a27d1b

Base64:

64es