Unicode Finder

"깜" U+AE5C(HANGUL SYLLABLE GGAM)

U+AE5C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGAM

Programming

C
\uAE5C
JavaScript
\uAE5C
Java
\uAE5C
Json
\uAE5C
Python
\uAE5C
Perl
\x{AE5C}
PHP
\x{AE5C}
Ruby
\u{AE5C}
Rust
\u{AE5C}
Go
\uAE5C

Web

CSS
\00AE5C
HtmlDecimal
깜
HtmlHexadecimal
깜
Url
%EA%B9%9C

Code

MD5
473b91283bcc80e04d8a5a95aecafb3f
Sha1
85b4bbef5ee7616e1b147304ed647e6e8ede845e
Base64
6rmc

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAE5C';
console.log(char);  // Output: 깜

Java:

char c = '\uAE5C';
System.out.println(c);  // Output: 깜

JSON:

{"text": "\uAE5C"}  // Value: 깜

Python:

char = '\uAE5C'
print(char)  # Output: 깜

Perl:

my $char = "\x{AE5C}";
print $char;  # Output: 깜

PHP:

$char = "\x{AE5C}";
echo $char;  // Output: 깜

Ruby:

char = "\u{AE5C}"
puts char  # Output: 깜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44636;</p>  <!-- Display: 깜 -->

HTML Hexadecimal:

<p>HTML hex: &#xAE5C;</p>  <!-- Display: 깜 -->

URL Encoding:

// 깜 URL encoding
https://unicodefinder.com/search.php?query=%EA%B9%9C

Encodings

MD5:

473b91283bcc80e04d8a5a95aecafb3f

SHA1:

85b4bbef5ee7616e1b147304ed647e6e8ede845e

Base64:

6rmc