Unicode Finder

"뇷" U+B1F7(HANGUL SYLLABLE NYOLH)

U+B1F7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYOLH

Programming

C
\uB1F7
JavaScript
\uB1F7
Java
\uB1F7
Json
\uB1F7
Python
\uB1F7
Perl
\x{B1F7}
PHP
\x{B1F7}
Ruby
\u{B1F7}
Rust
\u{B1F7}
Go
\uB1F7

Web

CSS
\00B1F7
HtmlDecimal
뇷
HtmlHexadecimal
뇷
Url
%EB%87%B7

Code

MD5
769c0ba5a30461df048dcd55aee03acc
Sha1
8c173e6d7507d2eef73fbf37643c1caf80c8b57e
Base64
64e3

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB1F7';
console.log(char);  // Output: 뇷

Java:

char c = '\uB1F7';
System.out.println(c);  // Output: 뇷

JSON:

{"text": "\uB1F7"}  // Value: 뇷

Python:

char = '\uB1F7'
print(char)  # Output: 뇷

Perl:

my $char = "\x{B1F7}";
print $char;  # Output: 뇷

PHP:

$char = "\x{B1F7}";
echo $char;  // Output: 뇷

Ruby:

char = "\u{B1F7}"
puts char  # Output: 뇷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45559;</p>  <!-- Display: 뇷 -->

HTML Hexadecimal:

<p>HTML hex: &#xB1F7;</p>  <!-- Display: 뇷 -->

URL Encoding:

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

Encodings

MD5:

769c0ba5a30461df048dcd55aee03acc

SHA1:

8c173e6d7507d2eef73fbf37643c1caf80c8b57e

Base64:

64e3