Unicode Finder

"꽃" U+AF43(HANGUL SYLLABLE GGOC)

U+AF43
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGOC

Programming

C
\uAF43
JavaScript
\uAF43
Java
\uAF43
Json
\uAF43
Python
\uAF43
Perl
\x{AF43}
PHP
\x{AF43}
Ruby
\u{AF43}
Rust
\u{AF43}
Go
\uAF43

Web

CSS
\00AF43
HtmlDecimal
꽃
HtmlHexadecimal
꽃
Url
%EA%BD%83

Code

MD5
e6344f656751bbb95d37c019fa9981f6
Sha1
2b12519c6e2623da3ea27824012778bc268fe747
Base64
6r2D

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAF43';
console.log(char);  // Output: 꽃

Java:

char c = '\uAF43';
System.out.println(c);  // Output: 꽃

JSON:

{"text": "\uAF43"}  // Value: 꽃

Python:

char = '\uAF43'
print(char)  # Output: 꽃

Perl:

my $char = "\x{AF43}";
print $char;  # Output: 꽃

PHP:

$char = "\x{AF43}";
echo $char;  // Output: 꽃

Ruby:

char = "\u{AF43}"
puts char  # Output: 꽃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44867;</p>  <!-- Display: 꽃 -->

HTML Hexadecimal:

<p>HTML hex: &#xAF43;</p>  <!-- Display: 꽃 -->

URL Encoding:

// 꽃 URL encoding
https://unicodefinder.com/search.php?query=%EA%BD%83

Encodings

MD5:

e6344f656751bbb95d37c019fa9981f6

SHA1:

2b12519c6e2623da3ea27824012778bc268fe747

Base64:

6r2D