Unicode Finder

"뇾" U+B1FE(HANGUL SYLLABLE NYOJ)

U+B1FE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYOJ

Programming

C
\uB1FE
JavaScript
\uB1FE
Java
\uB1FE
Json
\uB1FE
Python
\uB1FE
Perl
\x{B1FE}
PHP
\x{B1FE}
Ruby
\u{B1FE}
Rust
\u{B1FE}
Go
\uB1FE

Web

CSS
\00B1FE
HtmlDecimal
뇾
HtmlHexadecimal
뇾
Url
%EB%87%BE

Code

MD5
f2e1a432103ed4e97d07a99022dadfb3
Sha1
a68b57af07ca50aa831c17e22bb9e65e69ba3c3f
Base64
64e+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB1FE';
console.log(char);  // Output: 뇾

Java:

char c = '\uB1FE';
System.out.println(c);  // Output: 뇾

JSON:

{"text": "\uB1FE"}  // Value: 뇾

Python:

char = '\uB1FE'
print(char)  # Output: 뇾

Perl:

my $char = "\x{B1FE}";
print $char;  # Output: 뇾

PHP:

$char = "\x{B1FE}";
echo $char;  // Output: 뇾

Ruby:

char = "\u{B1FE}"
puts char  # Output: 뇾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45566;</p>  <!-- Display: 뇾 -->

HTML Hexadecimal:

<p>HTML hex: &#xB1FE;</p>  <!-- Display: 뇾 -->

URL Encoding:

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

Encodings

MD5:

f2e1a432103ed4e97d07a99022dadfb3

SHA1:

a68b57af07ca50aa831c17e22bb9e65e69ba3c3f

Base64:

64e+