Unicode Finder

"뇥" U+B1E5(HANGUL SYLLABLE NOET)

U+B1E5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NOET

Programming

C
\uB1E5
JavaScript
\uB1E5
Java
\uB1E5
Json
\uB1E5
Python
\uB1E5
Perl
\x{B1E5}
PHP
\x{B1E5}
Ruby
\u{B1E5}
Rust
\u{B1E5}
Go
\uB1E5

Web

CSS
\00B1E5
HtmlDecimal
뇥
HtmlHexadecimal
뇥
Url
%EB%87%A5

Code

MD5
4ab0d85b05ec896d26fad5b89d446ef5
Sha1
e5fa8053aded0c21df82e033819a6b12f0d3e489
Base64
64el

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB1E5';
console.log(char);  // Output: 뇥

Java:

char c = '\uB1E5';
System.out.println(c);  // Output: 뇥

JSON:

{"text": "\uB1E5"}  // Value: 뇥

Python:

char = '\uB1E5'
print(char)  # Output: 뇥

Perl:

my $char = "\x{B1E5}";
print $char;  # Output: 뇥

PHP:

$char = "\x{B1E5}";
echo $char;  // Output: 뇥

Ruby:

char = "\u{B1E5}"
puts char  # Output: 뇥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45541;</p>  <!-- Display: 뇥 -->

HTML Hexadecimal:

<p>HTML hex: &#xB1E5;</p>  <!-- Display: 뇥 -->

URL Encoding:

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

Encodings

MD5:

4ab0d85b05ec896d26fad5b89d446ef5

SHA1:

e5fa8053aded0c21df82e033819a6b12f0d3e489

Base64:

64el