Unicode Finder

"귓" U+ADD3(HANGUL SYLLABLE GWIS)

U+ADD3
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWIS

Programming

C
\uADD3
JavaScript
\uADD3
Java
\uADD3
Json
\uADD3
Python
\uADD3
Perl
\x{ADD3}
PHP
\x{ADD3}
Ruby
\u{ADD3}
Rust
\u{ADD3}
Go
\uADD3

Web

CSS
\00ADD3
HtmlDecimal
귓
HtmlHexadecimal
귓
Url
%EA%B7%93

Code

MD5
bc40e1d2aa7b85e8316b7325a5840e12
Sha1
10e81374b045b6265eb78dd92947305e34e229e1
Base64
6reT

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uADD3';
console.log(char);  // Output: 귓

Java:

char c = '\uADD3';
System.out.println(c);  // Output: 귓

JSON:

{"text": "\uADD3"}  // Value: 귓

Python:

char = '\uADD3'
print(char)  # Output: 귓

Perl:

my $char = "\x{ADD3}";
print $char;  # Output: 귓

PHP:

$char = "\x{ADD3}";
echo $char;  // Output: 귓

Ruby:

char = "\u{ADD3}"
puts char  # Output: 귓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44499;</p>  <!-- Display: 귓 -->

HTML Hexadecimal:

<p>HTML hex: &#xADD3;</p>  <!-- Display: 귓 -->

URL Encoding:

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

Encodings

MD5:

bc40e1d2aa7b85e8316b7325a5840e12

SHA1:

10e81374b045b6265eb78dd92947305e34e229e1

Base64:

6reT