Unicode Finder

"연" U+C5F0(HANGUL SYLLABLE YEON)

U+C5F0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE YEON

Programming

C
\uC5F0
JavaScript
\uC5F0
Java
\uC5F0
Json
\uC5F0
Python
\uC5F0
Perl
\x{C5F0}
PHP
\x{C5F0}
Ruby
\u{C5F0}
Rust
\u{C5F0}
Go
\uC5F0

Web

CSS
\00C5F0
HtmlDecimal
연
HtmlHexadecimal
연
Url
%EC%97%B0

Code

MD5
958a02dacea765e1b7d1866a8644c382
Sha1
58e57cb6b9631d1f4776c90a787b002c0014295f
Base64
7Jew

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC5F0';
console.log(char);  // Output: 연

Java:

char c = '\uC5F0';
System.out.println(c);  // Output: 연

JSON:

{"text": "\uC5F0"}  // Value: 연

Python:

char = '\uC5F0'
print(char)  # Output: 연

Perl:

my $char = "\x{C5F0}";
print $char;  # Output: 연

PHP:

$char = "\x{C5F0}";
echo $char;  // Output: 연

Ruby:

char = "\u{C5F0}"
puts char  # Output: 연

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50672;</p>  <!-- Display: 연 -->

HTML Hexadecimal:

<p>HTML hex: &#xC5F0;</p>  <!-- Display: 연 -->

URL Encoding:

// 연 URL encoding
https://unicodefinder.com/search.php?query=%EC%97%B0

Encodings

MD5:

958a02dacea765e1b7d1866a8644c382

SHA1:

58e57cb6b9631d1f4776c90a787b002c0014295f

Base64:

7Jew