Unicode Finder

"뇡" U+B1E1(HANGUL SYLLABLE NOENG)

U+B1E1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NOENG

Programming

C
\uB1E1
JavaScript
\uB1E1
Java
\uB1E1
Json
\uB1E1
Python
\uB1E1
Perl
\x{B1E1}
PHP
\x{B1E1}
Ruby
\u{B1E1}
Rust
\u{B1E1}
Go
\uB1E1

Web

CSS
\00B1E1
HtmlDecimal
뇡
HtmlHexadecimal
뇡
Url
%EB%87%A1

Code

MD5
2fcc95bf52a726e4ea2ba073fde3ee73
Sha1
c83d1692a1f45a5926fbb07ca306b3a19c164277
Base64
64eh

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB1E1';
console.log(char);  // Output: 뇡

Java:

char c = '\uB1E1';
System.out.println(c);  // Output: 뇡

JSON:

{"text": "\uB1E1"}  // Value: 뇡

Python:

char = '\uB1E1'
print(char)  # Output: 뇡

Perl:

my $char = "\x{B1E1}";
print $char;  # Output: 뇡

PHP:

$char = "\x{B1E1}";
echo $char;  // Output: 뇡

Ruby:

char = "\u{B1E1}"
puts char  # Output: 뇡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45537;</p>  <!-- Display: 뇡 -->

HTML Hexadecimal:

<p>HTML hex: &#xB1E1;</p>  <!-- Display: 뇡 -->

URL Encoding:

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

Encodings

MD5:

2fcc95bf52a726e4ea2ba073fde3ee73

SHA1:

c83d1692a1f45a5926fbb07ca306b3a19c164277

Base64:

64eh