Unicode Finder

"긱" U+AE31(HANGUL SYLLABLE GIG)

U+AE31
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GIG

Programming

C
\uAE31
JavaScript
\uAE31
Java
\uAE31
Json
\uAE31
Python
\uAE31
Perl
\x{AE31}
PHP
\x{AE31}
Ruby
\u{AE31}
Rust
\u{AE31}
Go
\uAE31

Web

CSS
\00AE31
HtmlDecimal
긱
HtmlHexadecimal
긱
Url
%EA%B8%B1

Code

MD5
79fce91477858f3a57277562ea2b3c19
Sha1
a2febfac7054df133d08b9813938898d4f3769b6
Base64
6rix

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAE31';
console.log(char);  // Output: 긱

Java:

char c = '\uAE31';
System.out.println(c);  // Output: 긱

JSON:

{"text": "\uAE31"}  // Value: 긱

Python:

char = '\uAE31'
print(char)  # Output: 긱

Perl:

my $char = "\x{AE31}";
print $char;  # Output: 긱

PHP:

$char = "\x{AE31}";
echo $char;  // Output: 긱

Ruby:

char = "\u{AE31}"
puts char  # Output: 긱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44593;</p>  <!-- Display: 긱 -->

HTML Hexadecimal:

<p>HTML hex: &#xAE31;</p>  <!-- Display: 긱 -->

URL Encoding:

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

Encodings

MD5:

79fce91477858f3a57277562ea2b3c19

SHA1:

a2febfac7054df133d08b9813938898d4f3769b6

Base64:

6rix