Unicode Finder

"굿" U+AD7F(HANGUL SYLLABLE GUS)

굿
U+AD7F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GUS

Programming

C
\uAD7F
JavaScript
\uAD7F
Java
\uAD7F
Json
\uAD7F
Python
\uAD7F
Perl
\x{AD7F}
PHP
\x{AD7F}
Ruby
\u{AD7F}
Rust
\u{AD7F}
Go
\uAD7F

Web

CSS
\00AD7F
HtmlDecimal
굿
HtmlHexadecimal
굿
Url
%EA%B5%BF

Code

MD5
4de003405b60a229cc628419a71acbd8
Sha1
36c05e38bef1a0ddc570dc37dc7f4be2564d4418
Base64
6rW/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAD7F';
console.log(char);  // Output: 굿

Java:

char c = '\uAD7F';
System.out.println(c);  // Output: 굿

JSON:

{"text": "\uAD7F"}  // Value: 굿

Python:

char = '\uAD7F'
print(char)  # Output: 굿

Perl:

my $char = "\x{AD7F}";
print $char;  # Output: 굿

PHP:

$char = "\x{AD7F}";
echo $char;  // Output: 굿

Ruby:

char = "\u{AD7F}"
puts char  # Output: 굿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44415;</p>  <!-- Display: 굿 -->

HTML Hexadecimal:

<p>HTML hex: &#xAD7F;</p>  <!-- Display: 굿 -->

URL Encoding:

// 굿 URL encoding
https://unicodefinder.com/search.php?query=%EA%B5%BF

Encodings

MD5:

4de003405b60a229cc628419a71acbd8

SHA1:

36c05e38bef1a0ddc570dc37dc7f4be2564d4418

Base64:

6rW/