Unicode Finder

"뉼" U+B27C(HANGUL SYLLABLE NYUL)

U+B27C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYUL

Programming

C
\uB27C
JavaScript
\uB27C
Java
\uB27C
Json
\uB27C
Python
\uB27C
Perl
\x{B27C}
PHP
\x{B27C}
Ruby
\u{B27C}
Rust
\u{B27C}
Go
\uB27C

Web

CSS
\00B27C
HtmlDecimal
뉼
HtmlHexadecimal
뉼
Url
%EB%89%BC

Code

MD5
d280ea60828252f9b33f442618252538
Sha1
38c6958bf476b364daa4b19831856d26f9f08dd4
Base64
64m8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB27C';
console.log(char);  // Output: 뉼

Java:

char c = '\uB27C';
System.out.println(c);  // Output: 뉼

JSON:

{"text": "\uB27C"}  // Value: 뉼

Python:

char = '\uB27C'
print(char)  # Output: 뉼

Perl:

my $char = "\x{B27C}";
print $char;  # Output: 뉼

PHP:

$char = "\x{B27C}";
echo $char;  // Output: 뉼

Ruby:

char = "\u{B27C}"
puts char  # Output: 뉼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45692;</p>  <!-- Display: 뉼 -->

HTML Hexadecimal:

<p>HTML hex: &#xB27C;</p>  <!-- Display: 뉼 -->

URL Encoding:

// 뉼 URL encoding
https://unicodefinder.com/search.php?query=%EB%89%BC

Encodings

MD5:

d280ea60828252f9b33f442618252538

SHA1:

38c6958bf476b364daa4b19831856d26f9f08dd4

Base64:

64m8