Unicode Finder

"펃" U+D383(HANGUL SYLLABLE PEOD)

U+D383
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PEOD

Programming

C
\uD383
JavaScript
\uD383
Java
\uD383
Json
\uD383
Python
\uD383
Perl
\x{D383}
PHP
\x{D383}
Ruby
\u{D383}
Rust
\u{D383}
Go
\uD383

Web

CSS
\00D383
HtmlDecimal
펃
HtmlHexadecimal
펃
Url
%ED%8E%83

Code

MD5
a796109edda5d6e83713d6b93cf7fa64
Sha1
ed4ab08d7edaeb0666f65d3be7837072abafe441
Base64
7Y6D

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD383';
console.log(char);  // Output: 펃

Java:

char c = '\uD383';
System.out.println(c);  // Output: 펃

JSON:

{"text": "\uD383"}  // Value: 펃

Python:

char = '\uD383'
print(char)  # Output: 펃

Perl:

my $char = "\x{D383}";
print $char;  # Output: 펃

PHP:

$char = "\x{D383}";
echo $char;  // Output: 펃

Ruby:

char = "\u{D383}"
puts char  # Output: 펃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54147;</p>  <!-- Display: 펃 -->

HTML Hexadecimal:

<p>HTML hex: &#xD383;</p>  <!-- Display: 펃 -->

URL Encoding:

// 펃 URL encoding
https://unicodefinder.com/search.php?query=%ED%8E%83

Encodings

MD5:

a796109edda5d6e83713d6b93cf7fa64

SHA1:

ed4ab08d7edaeb0666f65d3be7837072abafe441

Base64:

7Y6D