Unicode Finder

"읟" U+C75F(HANGUL SYLLABLE YID)

U+C75F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE YID

Programming

C
\uC75F
JavaScript
\uC75F
Java
\uC75F
Json
\uC75F
Python
\uC75F
Perl
\x{C75F}
PHP
\x{C75F}
Ruby
\u{C75F}
Rust
\u{C75F}
Go
\uC75F

Web

CSS
\00C75F
HtmlDecimal
읟
HtmlHexadecimal
읟
Url
%EC%9D%9F

Code

MD5
4080a9f2280b213c22f1b917014a154e
Sha1
36e9c85079e813503360a3dcc35e31cece367855
Base64
7J2f

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC75F';
console.log(char);  // Output: 읟

Java:

char c = '\uC75F';
System.out.println(c);  // Output: 읟

JSON:

{"text": "\uC75F"}  // Value: 읟

Python:

char = '\uC75F'
print(char)  # Output: 읟

Perl:

my $char = "\x{C75F}";
print $char;  # Output: 읟

PHP:

$char = "\x{C75F}";
echo $char;  // Output: 읟

Ruby:

char = "\u{C75F}"
puts char  # Output: 읟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51039;</p>  <!-- Display: 읟 -->

HTML Hexadecimal:

<p>HTML hex: &#xC75F;</p>  <!-- Display: 읟 -->

URL Encoding:

// 읟 URL encoding
https://unicodefinder.com/search.php?query=%EC%9D%9F

Encodings

MD5:

4080a9f2280b213c22f1b917014a154e

SHA1:

36e9c85079e813503360a3dcc35e31cece367855

Base64:

7J2f