Unicode Finder

"묌" U+BB0C(HANGUL SYLLABLE MOEM)

U+BB0C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MOEM

Programming

C
\uBB0C
JavaScript
\uBB0C
Java
\uBB0C
Json
\uBB0C
Python
\uBB0C
Perl
\x{BB0C}
PHP
\x{BB0C}
Ruby
\u{BB0C}
Rust
\u{BB0C}
Go
\uBB0C

Web

CSS
\00BB0C
HtmlDecimal
묌
HtmlHexadecimal
묌
Url
%EB%AC%8C

Code

MD5
902ad7cff2e0639c388e997db835b31a
Sha1
0b3a90b5108564135b9db449da49d9dba4aadc17
Base64
66yM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB0C';
console.log(char);  // Output: 묌

Java:

char c = '\uBB0C';
System.out.println(c);  // Output: 묌

JSON:

{"text": "\uBB0C"}  // Value: 묌

Python:

char = '\uBB0C'
print(char)  # Output: 묌

Perl:

my $char = "\x{BB0C}";
print $char;  # Output: 묌

PHP:

$char = "\x{BB0C}";
echo $char;  // Output: 묌

Ruby:

char = "\u{BB0C}"
puts char  # Output: 묌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47884;</p>  <!-- Display: 묌 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB0C;</p>  <!-- Display: 묌 -->

URL Encoding:

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

Encodings

MD5:

902ad7cff2e0639c388e997db835b31a

SHA1:

0b3a90b5108564135b9db449da49d9dba4aadc17

Base64:

66yM