Unicode Finder

"휓" U+D713(HANGUL SYLLABLE HWEC)

U+D713
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HWEC

Programming

C
\uD713
JavaScript
\uD713
Java
\uD713
Json
\uD713
Python
\uD713
Perl
\x{D713}
PHP
\x{D713}
Ruby
\u{D713}
Rust
\u{D713}
Go
\uD713

Web

CSS
\00D713
HtmlDecimal
휓
HtmlHexadecimal
휓
Url
%ED%9C%93

Code

MD5
777deeda5bd8f66746c3807b8cd29838
Sha1
97cb103b2724c95fd7e362aadb79c1ed41eb3d36
Base64
7ZyT

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD713';
console.log(char);  // Output: 휓

Java:

char c = '\uD713';
System.out.println(c);  // Output: 휓

JSON:

{"text": "\uD713"}  // Value: 휓

Python:

char = '\uD713'
print(char)  # Output: 휓

Perl:

my $char = "\x{D713}";
print $char;  # Output: 휓

PHP:

$char = "\x{D713}";
echo $char;  // Output: 휓

Ruby:

char = "\u{D713}"
puts char  # Output: 휓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55059;</p>  <!-- Display: 휓 -->

HTML Hexadecimal:

<p>HTML hex: &#xD713;</p>  <!-- Display: 휓 -->

URL Encoding:

// 휓 URL encoding
https://unicodefinder.com/search.php?query=%ED%9C%93

Encodings

MD5:

777deeda5bd8f66746c3807b8cd29838

SHA1:

97cb103b2724c95fd7e362aadb79c1ed41eb3d36

Base64:

7ZyT