Unicode Finder

"홳" U+D673(HANGUL SYLLABLE HWAEGS)

U+D673
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HWAEGS

Programming

C
\uD673
JavaScript
\uD673
Java
\uD673
Json
\uD673
Python
\uD673
Perl
\x{D673}
PHP
\x{D673}
Ruby
\u{D673}
Rust
\u{D673}
Go
\uD673

Web

CSS
\00D673
HtmlDecimal
홳
HtmlHexadecimal
홳
Url
%ED%99%B3

Code

MD5
9fcc15a36f1201cd3f269b1852951b7b
Sha1
284009cf2cbcf21fccd85519cc1fd4a01f5b7c33
Base64
7Zmz

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD673';
console.log(char);  // Output: 홳

Java:

char c = '\uD673';
System.out.println(c);  // Output: 홳

JSON:

{"text": "\uD673"}  // Value: 홳

Python:

char = '\uD673'
print(char)  # Output: 홳

Perl:

my $char = "\x{D673}";
print $char;  # Output: 홳

PHP:

$char = "\x{D673}";
echo $char;  // Output: 홳

Ruby:

char = "\u{D673}"
puts char  # Output: 홳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54899;</p>  <!-- Display: 홳 -->

HTML Hexadecimal:

<p>HTML hex: &#xD673;</p>  <!-- Display: 홳 -->

URL Encoding:

// 홳 URL encoding
https://unicodefinder.com/search.php?query=%ED%99%B3

Encodings

MD5:

9fcc15a36f1201cd3f269b1852951b7b

SHA1:

284009cf2cbcf21fccd85519cc1fd4a01f5b7c33

Base64:

7Zmz