Unicode Finder

"뫧" U+BAE7(HANGUL SYLLABLE MWAED)

U+BAE7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWAED

Programming

C
\uBAE7
JavaScript
\uBAE7
Java
\uBAE7
Json
\uBAE7
Python
\uBAE7
Perl
\x{BAE7}
PHP
\x{BAE7}
Ruby
\u{BAE7}
Rust
\u{BAE7}
Go
\uBAE7

Web

CSS
\00BAE7
HtmlDecimal
뫧
HtmlHexadecimal
뫧
Url
%EB%AB%A7

Code

MD5
9bd3e8b578879029c8e5ae93df40014d
Sha1
c69546a93789702aa3eb9f1d819c1e23412025bc
Base64
66un

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAE7';
console.log(char);  // Output: 뫧

Java:

char c = '\uBAE7';
System.out.println(c);  // Output: 뫧

JSON:

{"text": "\uBAE7"}  // Value: 뫧

Python:

char = '\uBAE7'
print(char)  # Output: 뫧

Perl:

my $char = "\x{BAE7}";
print $char;  # Output: 뫧

PHP:

$char = "\x{BAE7}";
echo $char;  // Output: 뫧

Ruby:

char = "\u{BAE7}"
puts char  # Output: 뫧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47847;</p>  <!-- Display: 뫧 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAE7;</p>  <!-- Display: 뫧 -->

URL Encoding:

// 뫧 URL encoding
https://unicodefinder.com/search.php?query=%EB%AB%A7

Encodings

MD5:

9bd3e8b578879029c8e5ae93df40014d

SHA1:

c69546a93789702aa3eb9f1d819c1e23412025bc

Base64:

66un