Unicode Finder

"긓" U+AE13(HANGUL SYLLABLE GEUH)

U+AE13
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE GEUH

Programming

C
\uAE13
JavaScript
\uAE13
Java
\uAE13
Json
\uAE13
Python
\uAE13
Perl
\x{AE13}
PHP
\x{AE13}
Ruby
\u{AE13}
Rust
\u{AE13}
Go
\uAE13

Web

CSS
\00AE13
HtmlDecimal
긓
HtmlHexadecimal
긓
Url
%EA%B8%93

Code

MD5
2e9a2a4d862bae897f6b3a65efb6d1f9
Sha1
6ffe6aaedbb069f1696cc0f4df80fe0bad38a4b5
Base64
6riT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAE13';
console.log(char);  // Output: 긓

Java:

char c = '\uAE13';
System.out.println(c);  // Output: 긓

JSON:

{"text": "\uAE13"}  // Value: 긓

Python:

char = '\uAE13'
print(char)  # Output: 긓

Perl:

my $char = "\x{AE13}";
print $char;  # Output: 긓

PHP:

$char = "\x{AE13}";
echo $char;  // Output: 긓

Ruby:

char = "\u{AE13}"
puts char  # Output: 긓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44563;</p>  <!-- Display: 긓 -->

HTML Hexadecimal:

<p>HTML hex: &#xAE13;</p>  <!-- Display: 긓 -->

URL Encoding:

// 긓 URL encoding
https://unicodefinder.com/search.php?query=%EA%B8%93

Encodings

MD5:

2e9a2a4d862bae897f6b3a65efb6d1f9

SHA1:

6ffe6aaedbb069f1696cc0f4df80fe0bad38a4b5

Base64:

6riT