Unicode Finder

"넋" U+B10B(HANGUL SYLLABLE NEOGS)

U+B10B
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE NEOGS

Programming

C
\uB10B
JavaScript
\uB10B
Java
\uB10B
Json
\uB10B
Python
\uB10B
Perl
\x{B10B}
PHP
\x{B10B}
Ruby
\u{B10B}
Rust
\u{B10B}
Go
\uB10B

Web

CSS
\00B10B
HtmlDecimal
넋
HtmlHexadecimal
넋
Url
%EB%84%8B

Code

MD5
0e842ae90c51b68dad5d92db599e62e1
Sha1
0ac0c789875666c08098686607e2b145e1f3972e
Base64
64SL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uB10B';
console.log(char);  // Output: 넋

Java:

char c = '\uB10B';
System.out.println(c);  // Output: 넋

JSON:

{"text": "\uB10B"}  // Value: 넋

Python:

char = '\uB10B'
print(char)  # Output: 넋

Perl:

my $char = "\x{B10B}";
print $char;  # Output: 넋

PHP:

$char = "\x{B10B}";
echo $char;  // Output: 넋

Ruby:

char = "\u{B10B}"
puts char  # Output: 넋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45323;</p>  <!-- Display: 넋 -->

HTML Hexadecimal:

<p>HTML hex: &#xB10B;</p>  <!-- Display: 넋 -->

URL Encoding:

// 넋 URL encoding
https://unicodefinder.com/search.php?query=%EB%84%8B

Encodings

MD5:

0e842ae90c51b68dad5d92db599e62e1

SHA1:

0ac0c789875666c08098686607e2b145e1f3972e

Base64:

64SL