Unicode Finder

"뉙" U+B259(HANGUL SYLLABLE NWIG)

U+B259
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NWIG

Programming

C
\uB259
JavaScript
\uB259
Java
\uB259
Json
\uB259
Python
\uB259
Perl
\x{B259}
PHP
\x{B259}
Ruby
\u{B259}
Rust
\u{B259}
Go
\uB259

Web

CSS
\00B259
HtmlDecimal
뉙
HtmlHexadecimal
뉙
Url
%EB%89%99

Code

MD5
65e99204e3b48e7e736b4c3162fc5fb4
Sha1
fc9d8a41b23ce7add1a5f2076e1650d2cae16f12
Base64
64mZ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB259';
console.log(char);  // Output: 뉙

Java:

char c = '\uB259';
System.out.println(c);  // Output: 뉙

JSON:

{"text": "\uB259"}  // Value: 뉙

Python:

char = '\uB259'
print(char)  # Output: 뉙

Perl:

my $char = "\x{B259}";
print $char;  # Output: 뉙

PHP:

$char = "\x{B259}";
echo $char;  // Output: 뉙

Ruby:

char = "\u{B259}"
puts char  # Output: 뉙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45657;</p>  <!-- Display: 뉙 -->

HTML Hexadecimal:

<p>HTML hex: &#xB259;</p>  <!-- Display: 뉙 -->

URL Encoding:

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

Encodings

MD5:

65e99204e3b48e7e736b4c3162fc5fb4

SHA1:

fc9d8a41b23ce7add1a5f2076e1650d2cae16f12

Base64:

64mZ