Unicode Finder

"뉲" U+B272(HANGUL SYLLABLE NWIP)

U+B272
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NWIP

Programming

C
\uB272
JavaScript
\uB272
Java
\uB272
Json
\uB272
Python
\uB272
Perl
\x{B272}
PHP
\x{B272}
Ruby
\u{B272}
Rust
\u{B272}
Go
\uB272

Web

CSS
\00B272
HtmlDecimal
뉲
HtmlHexadecimal
뉲
Url
%EB%89%B2

Code

MD5
0182fffc3423818c51f46e163319e85d
Sha1
43b802d4ac9c22e698c7ebf404c2d7af02e69544
Base64
64my

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB272';
console.log(char);  // Output: 뉲

Java:

char c = '\uB272';
System.out.println(c);  // Output: 뉲

JSON:

{"text": "\uB272"}  // Value: 뉲

Python:

char = '\uB272'
print(char)  # Output: 뉲

Perl:

my $char = "\x{B272}";
print $char;  # Output: 뉲

PHP:

$char = "\x{B272}";
echo $char;  // Output: 뉲

Ruby:

char = "\u{B272}"
puts char  # Output: 뉲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45682;</p>  <!-- Display: 뉲 -->

HTML Hexadecimal:

<p>HTML hex: &#xB272;</p>  <!-- Display: 뉲 -->

URL Encoding:

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

Encodings

MD5:

0182fffc3423818c51f46e163319e85d

SHA1:

43b802d4ac9c22e698c7ebf404c2d7af02e69544

Base64:

64my