Unicode Finder

"묋" U+BB0B(HANGUL SYLLABLE MOELH)

U+BB0B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MOELH

Programming

C
\uBB0B
JavaScript
\uBB0B
Java
\uBB0B
Json
\uBB0B
Python
\uBB0B
Perl
\x{BB0B}
PHP
\x{BB0B}
Ruby
\u{BB0B}
Rust
\u{BB0B}
Go
\uBB0B

Web

CSS
\00BB0B
HtmlDecimal
묋
HtmlHexadecimal
묋
Url
%EB%AC%8B

Code

MD5
f6984992fea99c939497f86f5c93adfe
Sha1
0f464dd94c20ead9aa1e809db117777dd02aa71e
Base64
66yL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB0B';
console.log(char);  // Output: 묋

Java:

char c = '\uBB0B';
System.out.println(c);  // Output: 묋

JSON:

{"text": "\uBB0B"}  // Value: 묋

Python:

char = '\uBB0B'
print(char)  # Output: 묋

Perl:

my $char = "\x{BB0B}";
print $char;  # Output: 묋

PHP:

$char = "\x{BB0B}";
echo $char;  // Output: 묋

Ruby:

char = "\u{BB0B}"
puts char  # Output: 묋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47883;</p>  <!-- Display: 묋 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB0B;</p>  <!-- Display: 묋 -->

URL Encoding:

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

Encodings

MD5:

f6984992fea99c939497f86f5c93adfe

SHA1:

0f464dd94c20ead9aa1e809db117777dd02aa71e

Base64:

66yL