Unicode Finder

"뫟" U+BADF(HANGUL SYLLABLE MWAH)

U+BADF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWAH

Programming

C
\uBADF
JavaScript
\uBADF
Java
\uBADF
Json
\uBADF
Python
\uBADF
Perl
\x{BADF}
PHP
\x{BADF}
Ruby
\u{BADF}
Rust
\u{BADF}
Go
\uBADF

Web

CSS
\00BADF
HtmlDecimal
뫟
HtmlHexadecimal
뫟
Url
%EB%AB%9F

Code

MD5
559621318bf765690c3e0f6822e6cd8b
Sha1
8b067d901ecda18421ddff5641aa8f595adb30f5
Base64
66uf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBADF';
console.log(char);  // Output: 뫟

Java:

char c = '\uBADF';
System.out.println(c);  // Output: 뫟

JSON:

{"text": "\uBADF"}  // Value: 뫟

Python:

char = '\uBADF'
print(char)  # Output: 뫟

Perl:

my $char = "\x{BADF}";
print $char;  # Output: 뫟

PHP:

$char = "\x{BADF}";
echo $char;  // Output: 뫟

Ruby:

char = "\u{BADF}"
puts char  # Output: 뫟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47839;</p>  <!-- Display: 뫟 -->

HTML Hexadecimal:

<p>HTML hex: &#xBADF;</p>  <!-- Display: 뫟 -->

URL Encoding:

// 뫟 URL encoding
https://unicodefinder.com/search.php?query=%EB%AB%9F

Encodings

MD5:

559621318bf765690c3e0f6822e6cd8b

SHA1:

8b067d901ecda18421ddff5641aa8f595adb30f5

Base64:

66uf