Unicode Finder

"뙘" U+B658(HANGUL SYLLABLE DDWAEM)

U+B658
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDWAEM

Programming

C
\uB658
JavaScript
\uB658
Java
\uB658
Json
\uB658
Python
\uB658
Perl
\x{B658}
PHP
\x{B658}
Ruby
\u{B658}
Rust
\u{B658}
Go
\uB658

Web

CSS
\00B658
HtmlDecimal
뙘
HtmlHexadecimal
뙘
Url
%EB%99%98

Code

MD5
d00bfa5d9215b7d95f4133cdf78de800
Sha1
438662fe73bf7c29efca736fcd35356ae93fb7e4
Base64
65mY

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB658';
console.log(char);  // Output: 뙘

Java:

char c = '\uB658';
System.out.println(c);  // Output: 뙘

JSON:

{"text": "\uB658"}  // Value: 뙘

Python:

char = '\uB658'
print(char)  # Output: 뙘

Perl:

my $char = "\x{B658}";
print $char;  # Output: 뙘

PHP:

$char = "\x{B658}";
echo $char;  // Output: 뙘

Ruby:

char = "\u{B658}"
puts char  # Output: 뙘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46680;</p>  <!-- Display: 뙘 -->

HTML Hexadecimal:

<p>HTML hex: &#xB658;</p>  <!-- Display: 뙘 -->

URL Encoding:

// 뙘 URL encoding
https://unicodefinder.com/search.php?query=%EB%99%98

Encodings

MD5:

d00bfa5d9215b7d95f4133cdf78de800

SHA1:

438662fe73bf7c29efca736fcd35356ae93fb7e4

Base64:

65mY