Unicode Finder

"퓀" U+D4C0(HANGUL SYLLABLE PWEM)

U+D4C0
區塊名稱
Hangul Syllables
名稱
HANGUL SYLLABLE PWEM

Programming

C
\uD4C0
JavaScript
\uD4C0
Java
\uD4C0
Json
\uD4C0
Python
\uD4C0
Perl
\x{D4C0}
PHP
\x{D4C0}
Ruby
\u{D4C0}
Rust
\u{D4C0}
Go
\uD4C0

Web

CSS
\00D4C0
HtmlDecimal
퓀
HtmlHexadecimal
퓀
Url
%ED%93%80

Code

MD5
ac725da5dc0a85e268998e2bf2266c49
Sha1
0502adea9bb78eb22758d2811b04e6bd5e09dff1
Base64
7ZOA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uD4C0';
console.log(char);  // Output: 퓀

Java:

char c = '\uD4C0';
System.out.println(c);  // Output: 퓀

JSON:

{"text": "\uD4C0"}  // Value: 퓀

Python:

char = '\uD4C0'
print(char)  # Output: 퓀

Perl:

my $char = "\x{D4C0}";
print $char;  # Output: 퓀

PHP:

$char = "\x{D4C0}";
echo $char;  // Output: 퓀

Ruby:

char = "\u{D4C0}"
puts char  # Output: 퓀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54464;</p>  <!-- Display: 퓀 -->

HTML Hexadecimal:

<p>HTML hex: &#xD4C0;</p>  <!-- Display: 퓀 -->

URL Encoding:

// 퓀 URL encoding
https://unicodefinder.com/search.php?query=%ED%93%80

Encodings

MD5:

ac725da5dc0a85e268998e2bf2266c49

SHA1:

0502adea9bb78eb22758d2811b04e6bd5e09dff1

Base64:

7ZOA