Unicode Finder

"눙" U+B219(HANGUL SYLLABLE NUNG)

U+B219
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NUNG

Programming

C
\uB219
JavaScript
\uB219
Java
\uB219
Json
\uB219
Python
\uB219
Perl
\x{B219}
PHP
\x{B219}
Ruby
\u{B219}
Rust
\u{B219}
Go
\uB219

Web

CSS
\00B219
HtmlDecimal
눙
HtmlHexadecimal
눙
Url
%EB%88%99

Code

MD5
a41843f8c9678e5fafa136f231c809af
Sha1
fe41b22667b4fc5b24530bda5b4e4f3c83570284
Base64
64iZ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB219';
console.log(char);  // Output: 눙

Java:

char c = '\uB219';
System.out.println(c);  // Output: 눙

JSON:

{"text": "\uB219"}  // Value: 눙

Python:

char = '\uB219'
print(char)  # Output: 눙

Perl:

my $char = "\x{B219}";
print $char;  # Output: 눙

PHP:

$char = "\x{B219}";
echo $char;  // Output: 눙

Ruby:

char = "\u{B219}"
puts char  # Output: 눙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45593;</p>  <!-- Display: 눙 -->

HTML Hexadecimal:

<p>HTML hex: &#xB219;</p>  <!-- Display: 눙 -->

URL Encoding:

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

Encodings

MD5:

a41843f8c9678e5fafa136f231c809af

SHA1:

fe41b22667b4fc5b24530bda5b4e4f3c83570284

Base64:

64iZ