Unicode Finder

"걲" U+AC72(HANGUL SYLLABLE GEOGG)

U+AC72
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE GEOGG

Programming

C
\uAC72
JavaScript
\uAC72
Java
\uAC72
Json
\uAC72
Python
\uAC72
Perl
\x{AC72}
PHP
\x{AC72}
Ruby
\u{AC72}
Rust
\u{AC72}
Go
\uAC72

Web

CSS
\00AC72
HtmlDecimal
걲
HtmlHexadecimal
걲
Url
%EA%B1%B2

Code

MD5
f1fe4bb4ceaaaa329fe4a9a642ce6a18
Sha1
d143db7d0523020e94042a58b74c9b94b2a14033
Base64
6rGy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAC72';
console.log(char);  // Output: 걲

Java:

char c = '\uAC72';
System.out.println(c);  // Output: 걲

JSON:

{"text": "\uAC72"}  // Value: 걲

Python:

char = '\uAC72'
print(char)  # Output: 걲

Perl:

my $char = "\x{AC72}";
print $char;  # Output: 걲

PHP:

$char = "\x{AC72}";
echo $char;  // Output: 걲

Ruby:

char = "\u{AC72}"
puts char  # Output: 걲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44146;</p>  <!-- Display: 걲 -->

HTML Hexadecimal:

<p>HTML hex: &#xAC72;</p>  <!-- Display: 걲 -->

URL Encoding:

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

Encodings

MD5:

f1fe4bb4ceaaaa329fe4a9a642ce6a18

SHA1:

d143db7d0523020e94042a58b74c9b94b2a14033

Base64:

6rGy