Unicode Finder

"곏" U+ACCF(HANGUL SYLLABLE GYELB)

U+ACCF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GYELB

Programming

C
\uACCF
JavaScript
\uACCF
Java
\uACCF
Json
\uACCF
Python
\uACCF
Perl
\x{ACCF}
PHP
\x{ACCF}
Ruby
\u{ACCF}
Rust
\u{ACCF}
Go
\uACCF

Web

CSS
\00ACCF
HtmlDecimal
곏
HtmlHexadecimal
곏
Url
%EA%B3%8F

Code

MD5
08121c8fda630cb79f6a4236148d5092
Sha1
183f22f94b6871382244cf6ce8075a0ec81a7a95
Base64
6rOP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uACCF';
console.log(char);  // Output: 곏

Java:

char c = '\uACCF';
System.out.println(c);  // Output: 곏

JSON:

{"text": "\uACCF"}  // Value: 곏

Python:

char = '\uACCF'
print(char)  # Output: 곏

Perl:

my $char = "\x{ACCF}";
print $char;  # Output: 곏

PHP:

$char = "\x{ACCF}";
echo $char;  // Output: 곏

Ruby:

char = "\u{ACCF}"
puts char  # Output: 곏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44239;</p>  <!-- Display: 곏 -->

HTML Hexadecimal:

<p>HTML hex: &#xACCF;</p>  <!-- Display: 곏 -->

URL Encoding:

// 곏 URL encoding
https://unicodefinder.com/search.php?query=%EA%B3%8F

Encodings

MD5:

08121c8fda630cb79f6a4236148d5092

SHA1:

183f22f94b6871382244cf6ce8075a0ec81a7a95

Base64:

6rOP