Unicode Finder

"곲" U+ACF2(HANGUL SYLLABLE GOBS)

U+ACF2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GOBS

Programming

C
\uACF2
JavaScript
\uACF2
Java
\uACF2
Json
\uACF2
Python
\uACF2
Perl
\x{ACF2}
PHP
\x{ACF2}
Ruby
\u{ACF2}
Rust
\u{ACF2}
Go
\uACF2

Web

CSS
\00ACF2
HtmlDecimal
곲
HtmlHexadecimal
곲
Url
%EA%B3%B2

Code

MD5
adf4d7f9d970b8014e16fa0e47ce401e
Sha1
5a65ecf377eab469ec30401ca95b27d608bc9bad
Base64
6rOy

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uACF2';
console.log(char);  // Output: 곲

Java:

char c = '\uACF2';
System.out.println(c);  // Output: 곲

JSON:

{"text": "\uACF2"}  // Value: 곲

Python:

char = '\uACF2'
print(char)  # Output: 곲

Perl:

my $char = "\x{ACF2}";
print $char;  # Output: 곲

PHP:

$char = "\x{ACF2}";
echo $char;  // Output: 곲

Ruby:

char = "\u{ACF2}"
puts char  # Output: 곲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44274;</p>  <!-- Display: 곲 -->

HTML Hexadecimal:

<p>HTML hex: &#xACF2;</p>  <!-- Display: 곲 -->

URL Encoding:

// 곲 URL encoding
https://unicodefinder.com/search.php?query=%EA%B3%B2

Encodings

MD5:

adf4d7f9d970b8014e16fa0e47ce401e

SHA1:

5a65ecf377eab469ec30401ca95b27d608bc9bad

Base64:

6rOy