Unicode Finder

"깱" U+AE71(HANGUL SYLLABLE GGAELG)

U+AE71
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGAELG

Programming

C
\uAE71
JavaScript
\uAE71
Java
\uAE71
Json
\uAE71
Python
\uAE71
Perl
\x{AE71}
PHP
\x{AE71}
Ruby
\u{AE71}
Rust
\u{AE71}
Go
\uAE71

Web

CSS
\00AE71
HtmlDecimal
깱
HtmlHexadecimal
깱
Url
%EA%B9%B1

Code

MD5
f73ed5dd14598bf413745395a577797b
Sha1
06012aad3857a4edf6c41def209dea65f73d34a7
Base64
6rmx

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAE71';
console.log(char);  // Output: 깱

Java:

char c = '\uAE71';
System.out.println(c);  // Output: 깱

JSON:

{"text": "\uAE71"}  // Value: 깱

Python:

char = '\uAE71'
print(char)  # Output: 깱

Perl:

my $char = "\x{AE71}";
print $char;  # Output: 깱

PHP:

$char = "\x{AE71}";
echo $char;  // Output: 깱

Ruby:

char = "\u{AE71}"
puts char  # Output: 깱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44657;</p>  <!-- Display: 깱 -->

HTML Hexadecimal:

<p>HTML hex: &#xAE71;</p>  <!-- Display: 깱 -->

URL Encoding:

// 깱 URL encoding
https://unicodefinder.com/search.php?query=%EA%B9%B1

Encodings

MD5:

f73ed5dd14598bf413745395a577797b

SHA1:

06012aad3857a4edf6c41def209dea65f73d34a7

Base64:

6rmx