Unicode Finder

"얷" U+C5B7(HANGUL SYLLABLE EOGS)

U+C5B7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE EOGS

Programming

C
\uC5B7
JavaScript
\uC5B7
Java
\uC5B7
Json
\uC5B7
Python
\uC5B7
Perl
\x{C5B7}
PHP
\x{C5B7}
Ruby
\u{C5B7}
Rust
\u{C5B7}
Go
\uC5B7

Web

CSS
\00C5B7
HtmlDecimal
얷
HtmlHexadecimal
얷
Url
%EC%96%B7

Code

MD5
9387ad6203b50e8c23c2b7c799682a96
Sha1
57996ffe9f18094246734534e6270f77e077f55e
Base64
7Ja3

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC5B7';
console.log(char);  // Output: 얷

Java:

char c = '\uC5B7';
System.out.println(c);  // Output: 얷

JSON:

{"text": "\uC5B7"}  // Value: 얷

Python:

char = '\uC5B7'
print(char)  # Output: 얷

Perl:

my $char = "\x{C5B7}";
print $char;  # Output: 얷

PHP:

$char = "\x{C5B7}";
echo $char;  // Output: 얷

Ruby:

char = "\u{C5B7}"
puts char  # Output: 얷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50615;</p>  <!-- Display: 얷 -->

HTML Hexadecimal:

<p>HTML hex: &#xC5B7;</p>  <!-- Display: 얷 -->

URL Encoding:

// 얷 URL encoding
https://unicodefinder.com/search.php?query=%EC%96%B7

Encodings

MD5:

9387ad6203b50e8c23c2b7c799682a96

SHA1:

57996ffe9f18094246734534e6270f77e077f55e

Base64:

7Ja3