Unicode Finder

"뇶" U+B1F6(HANGUL SYLLABLE NYOLP)

U+B1F6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYOLP

Programming

C
\uB1F6
JavaScript
\uB1F6
Java
\uB1F6
Json
\uB1F6
Python
\uB1F6
Perl
\x{B1F6}
PHP
\x{B1F6}
Ruby
\u{B1F6}
Rust
\u{B1F6}
Go
\uB1F6

Web

CSS
\00B1F6
HtmlDecimal
뇶
HtmlHexadecimal
뇶
Url
%EB%87%B6

Code

MD5
46a44e0000a4fbb51ce74d36c666756c
Sha1
b320e5042923e37605e0ed462036007e329198ed
Base64
64e2

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB1F6';
console.log(char);  // Output: 뇶

Java:

char c = '\uB1F6';
System.out.println(c);  // Output: 뇶

JSON:

{"text": "\uB1F6"}  // Value: 뇶

Python:

char = '\uB1F6'
print(char)  # Output: 뇶

Perl:

my $char = "\x{B1F6}";
print $char;  # Output: 뇶

PHP:

$char = "\x{B1F6}";
echo $char;  // Output: 뇶

Ruby:

char = "\u{B1F6}"
puts char  # Output: 뇶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45558;</p>  <!-- Display: 뇶 -->

HTML Hexadecimal:

<p>HTML hex: &#xB1F6;</p>  <!-- Display: 뇶 -->

URL Encoding:

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

Encodings

MD5:

46a44e0000a4fbb51ce74d36c666756c

SHA1:

b320e5042923e37605e0ed462036007e329198ed

Base64:

64e2