Unicode Finder

"뉂" U+B242(HANGUL SYLLABLE NWENH)

U+B242
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NWENH

Programming

C
\uB242
JavaScript
\uB242
Java
\uB242
Json
\uB242
Python
\uB242
Perl
\x{B242}
PHP
\x{B242}
Ruby
\u{B242}
Rust
\u{B242}
Go
\uB242

Web

CSS
\00B242
HtmlDecimal
뉂
HtmlHexadecimal
뉂
Url
%EB%89%82

Code

MD5
3bf2970435c85f809109c1654e313715
Sha1
5215269e08dd7ce80c8efcfe6e4a71329ac8fb42
Base64
64mC

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB242';
console.log(char);  // Output: 뉂

Java:

char c = '\uB242';
System.out.println(c);  // Output: 뉂

JSON:

{"text": "\uB242"}  // Value: 뉂

Python:

char = '\uB242'
print(char)  # Output: 뉂

Perl:

my $char = "\x{B242}";
print $char;  # Output: 뉂

PHP:

$char = "\x{B242}";
echo $char;  // Output: 뉂

Ruby:

char = "\u{B242}"
puts char  # Output: 뉂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45634;</p>  <!-- Display: 뉂 -->

HTML Hexadecimal:

<p>HTML hex: &#xB242;</p>  <!-- Display: 뉂 -->

URL Encoding:

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

Encodings

MD5:

3bf2970435c85f809109c1654e313715

SHA1:

5215269e08dd7ce80c8efcfe6e4a71329ac8fb42

Base64:

64mC