Unicode Finder

"펓" U+D393(HANGUL SYLLABLE PEOC)

U+D393
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PEOC

Programming

C
\uD393
JavaScript
\uD393
Java
\uD393
Json
\uD393
Python
\uD393
Perl
\x{D393}
PHP
\x{D393}
Ruby
\u{D393}
Rust
\u{D393}
Go
\uD393

Web

CSS
\00D393
HtmlDecimal
펓
HtmlHexadecimal
펓
Url
%ED%8E%93

Code

MD5
ab8406ced4c1b096db3a772a8b4b280a
Sha1
4014b38879627ace8dcd3ef23840df4b3414a69f
Base64
7Y6T

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD393';
console.log(char);  // Output: 펓

Java:

char c = '\uD393';
System.out.println(c);  // Output: 펓

JSON:

{"text": "\uD393"}  // Value: 펓

Python:

char = '\uD393'
print(char)  # Output: 펓

Perl:

my $char = "\x{D393}";
print $char;  # Output: 펓

PHP:

$char = "\x{D393}";
echo $char;  // Output: 펓

Ruby:

char = "\u{D393}"
puts char  # Output: 펓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54163;</p>  <!-- Display: 펓 -->

HTML Hexadecimal:

<p>HTML hex: &#xD393;</p>  <!-- Display: 펓 -->

URL Encoding:

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

Encodings

MD5:

ab8406ced4c1b096db3a772a8b4b280a

SHA1:

4014b38879627ace8dcd3ef23840df4b3414a69f

Base64:

7Y6T