Unicode Finder

"먍" U+BA0D(HANGUL SYLLABLE MYALT)

U+BA0D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYALT

Programming

C
\uBA0D
JavaScript
\uBA0D
Java
\uBA0D
Json
\uBA0D
Python
\uBA0D
Perl
\x{BA0D}
PHP
\x{BA0D}
Ruby
\u{BA0D}
Rust
\u{BA0D}
Go
\uBA0D

Web

CSS
\00BA0D
HtmlDecimal
먍
HtmlHexadecimal
먍
Url
%EB%A8%8D

Code

MD5
6881f18217101ec5cfcf520a3c530a96
Sha1
003ab5497787174e59a02f090b054e2dc4e266ee
Base64
66iN

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA0D';
console.log(char);  // Output: 먍

Java:

char c = '\uBA0D';
System.out.println(c);  // Output: 먍

JSON:

{"text": "\uBA0D"}  // Value: 먍

Python:

char = '\uBA0D'
print(char)  # Output: 먍

Perl:

my $char = "\x{BA0D}";
print $char;  # Output: 먍

PHP:

$char = "\x{BA0D}";
echo $char;  // Output: 먍

Ruby:

char = "\u{BA0D}"
puts char  # Output: 먍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47629;</p>  <!-- Display: 먍 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA0D;</p>  <!-- Display: 먍 -->

URL Encoding:

// 먍 URL encoding
https://unicodefinder.com/search.php?query=%EB%A8%8D

Encodings

MD5:

6881f18217101ec5cfcf520a3c530a96

SHA1:

003ab5497787174e59a02f090b054e2dc4e266ee

Base64:

66iN