Unicode Finder

"꿈" U+AFC8(HANGUL SYLLABLE GGUM)

U+AFC8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGUM

Programming

C
\uAFC8
JavaScript
\uAFC8
Java
\uAFC8
Json
\uAFC8
Python
\uAFC8
Perl
\x{AFC8}
PHP
\x{AFC8}
Ruby
\u{AFC8}
Rust
\u{AFC8}
Go
\uAFC8

Web

CSS
\00AFC8
HtmlDecimal
꿈
HtmlHexadecimal
꿈
Url
%EA%BF%88

Code

MD5
fa4afda5a0cac6dbba8b402ad84a56c4
Sha1
59debe59d57db2b5e48d7c9b46cf07c7209b6d1e
Base64
6r+I

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAFC8';
console.log(char);  // Output: 꿈

Java:

char c = '\uAFC8';
System.out.println(c);  // Output: 꿈

JSON:

{"text": "\uAFC8"}  // Value: 꿈

Python:

char = '\uAFC8'
print(char)  # Output: 꿈

Perl:

my $char = "\x{AFC8}";
print $char;  # Output: 꿈

PHP:

$char = "\x{AFC8}";
echo $char;  // Output: 꿈

Ruby:

char = "\u{AFC8}"
puts char  # Output: 꿈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45000;</p>  <!-- Display: 꿈 -->

HTML Hexadecimal:

<p>HTML hex: &#xAFC8;</p>  <!-- Display: 꿈 -->

URL Encoding:

// 꿈 URL encoding
https://unicodefinder.com/search.php?query=%EA%BF%88

Encodings

MD5:

fa4afda5a0cac6dbba8b402ad84a56c4

SHA1:

59debe59d57db2b5e48d7c9b46cf07c7209b6d1e

Base64:

6r+I