Unicode Finder

"긅" U+AE05(HANGUL SYLLABLE GEULT)

U+AE05
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GEULT

Programming

C
\uAE05
JavaScript
\uAE05
Java
\uAE05
Json
\uAE05
Python
\uAE05
Perl
\x{AE05}
PHP
\x{AE05}
Ruby
\u{AE05}
Rust
\u{AE05}
Go
\uAE05

Web

CSS
\00AE05
HtmlDecimal
긅
HtmlHexadecimal
긅
Url
%EA%B8%85

Code

MD5
740f513c461f7c720f557b200dbd19de
Sha1
c49110e529c9042b1895f717e9192796e3b6d9c0
Base64
6riF

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAE05';
console.log(char);  // Output: 긅

Java:

char c = '\uAE05';
System.out.println(c);  // Output: 긅

JSON:

{"text": "\uAE05"}  // Value: 긅

Python:

char = '\uAE05'
print(char)  # Output: 긅

Perl:

my $char = "\x{AE05}";
print $char;  # Output: 긅

PHP:

$char = "\x{AE05}";
echo $char;  // Output: 긅

Ruby:

char = "\u{AE05}"
puts char  # Output: 긅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44549;</p>  <!-- Display: 긅 -->

HTML Hexadecimal:

<p>HTML hex: &#xAE05;</p>  <!-- Display: 긅 -->

URL Encoding:

// 긅 URL encoding
https://unicodefinder.com/search.php?query=%EA%B8%85

Encodings

MD5:

740f513c461f7c720f557b200dbd19de

SHA1:

c49110e529c9042b1895f717e9192796e3b6d9c0

Base64:

6riF