Unicode Finder

"괅" U+AD05(HANGUL SYLLABLE GWALG)

U+AD05
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWALG

Programming

C
\uAD05
JavaScript
\uAD05
Java
\uAD05
Json
\uAD05
Python
\uAD05
Perl
\x{AD05}
PHP
\x{AD05}
Ruby
\u{AD05}
Rust
\u{AD05}
Go
\uAD05

Web

CSS
\00AD05
HtmlDecimal
괅
HtmlHexadecimal
괅
Url
%EA%B4%85

Code

MD5
a6f743ce96390f9260ab831ed419afb9
Sha1
37fc4105f6a0671468d78478a480f1041ca7e68e
Base64
6rSF

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAD05';
console.log(char);  // Output: 괅

Java:

char c = '\uAD05';
System.out.println(c);  // Output: 괅

JSON:

{"text": "\uAD05"}  // Value: 괅

Python:

char = '\uAD05'
print(char)  # Output: 괅

Perl:

my $char = "\x{AD05}";
print $char;  # Output: 괅

PHP:

$char = "\x{AD05}";
echo $char;  // Output: 괅

Ruby:

char = "\u{AD05}"
puts char  # Output: 괅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44293;</p>  <!-- Display: 괅 -->

HTML Hexadecimal:

<p>HTML hex: &#xAD05;</p>  <!-- Display: 괅 -->

URL Encoding:

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

Encodings

MD5:

a6f743ce96390f9260ab831ed419afb9

SHA1:

37fc4105f6a0671468d78478a480f1041ca7e68e

Base64:

6rSF