Unicode Finder

"믝" U+BBDD(HANGUL SYLLABLE MYIG)

U+BBDD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYIG

Programming

C
\uBBDD
JavaScript
\uBBDD
Java
\uBBDD
Json
\uBBDD
Python
\uBBDD
Perl
\x{BBDD}
PHP
\x{BBDD}
Ruby
\u{BBDD}
Rust
\u{BBDD}
Go
\uBBDD

Web

CSS
\00BBDD
HtmlDecimal
믝
HtmlHexadecimal
믝
Url
%EB%AF%9D

Code

MD5
9d3f8580787b7e4490b5cd78e8131d2e
Sha1
d2332b5ed457b109aadb89f9962b21af35190e83
Base64
66+d

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBDD';
console.log(char);  // Output: 믝

Java:

char c = '\uBBDD';
System.out.println(c);  // Output: 믝

JSON:

{"text": "\uBBDD"}  // Value: 믝

Python:

char = '\uBBDD'
print(char)  # Output: 믝

Perl:

my $char = "\x{BBDD}";
print $char;  # Output: 믝

PHP:

$char = "\x{BBDD}";
echo $char;  // Output: 믝

Ruby:

char = "\u{BBDD}"
puts char  # Output: 믝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48093;</p>  <!-- Display: 믝 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBDD;</p>  <!-- Display: 믝 -->

URL Encoding:

// 믝 URL encoding
https://unicodefinder.com/search.php?query=%EB%AF%9D

Encodings

MD5:

9d3f8580787b7e4490b5cd78e8131d2e

SHA1:

d2332b5ed457b109aadb89f9962b21af35190e83

Base64:

66+d