Unicode Finder

"괆" U+AD06(HANGUL SYLLABLE GWALM)

U+AD06
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWALM

Programming

C
\uAD06
JavaScript
\uAD06
Java
\uAD06
Json
\uAD06
Python
\uAD06
Perl
\x{AD06}
PHP
\x{AD06}
Ruby
\u{AD06}
Rust
\u{AD06}
Go
\uAD06

Web

CSS
\00AD06
HtmlDecimal
괆
HtmlHexadecimal
괆
Url
%EA%B4%86

Code

MD5
778a8d97a39667bb978bb27c5a10f315
Sha1
a8f9a9b649ef276a402465afe516ba3ad892d403
Base64
6rSG

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAD06';
console.log(char);  // Output: 괆

Java:

char c = '\uAD06';
System.out.println(c);  // Output: 괆

JSON:

{"text": "\uAD06"}  // Value: 괆

Python:

char = '\uAD06'
print(char)  # Output: 괆

Perl:

my $char = "\x{AD06}";
print $char;  # Output: 괆

PHP:

$char = "\x{AD06}";
echo $char;  // Output: 괆

Ruby:

char = "\u{AD06}"
puts char  # Output: 괆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44294;</p>  <!-- Display: 괆 -->

HTML Hexadecimal:

<p>HTML hex: &#xAD06;</p>  <!-- Display: 괆 -->

URL Encoding:

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

Encodings

MD5:

778a8d97a39667bb978bb27c5a10f315

SHA1:

a8f9a9b649ef276a402465afe516ba3ad892d403

Base64:

6rSG