Unicode Finder

"뒯" U+B4AF(HANGUL SYLLABLE DWILB)

U+B4AF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWILB

Programming

C
\uB4AF
JavaScript
\uB4AF
Java
\uB4AF
Json
\uB4AF
Python
\uB4AF
Perl
\x{B4AF}
PHP
\x{B4AF}
Ruby
\u{B4AF}
Rust
\u{B4AF}
Go
\uB4AF

Web

CSS
\00B4AF
HtmlDecimal
뒯
HtmlHexadecimal
뒯
Url
%EB%92%AF

Code

MD5
fdec6f62efaf380fa724d6b1c997ca20
Sha1
bc87bb8f9e74c1b57850d58da2d2571e676896bb
Base64
65Kv

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4AF';
console.log(char);  // Output: 뒯

Java:

char c = '\uB4AF';
System.out.println(c);  // Output: 뒯

JSON:

{"text": "\uB4AF"}  // Value: 뒯

Python:

char = '\uB4AF'
print(char)  # Output: 뒯

Perl:

my $char = "\x{B4AF}";
print $char;  # Output: 뒯

PHP:

$char = "\x{B4AF}";
echo $char;  // Output: 뒯

Ruby:

char = "\u{B4AF}"
puts char  # Output: 뒯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46255;</p>  <!-- Display: 뒯 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4AF;</p>  <!-- Display: 뒯 -->

URL Encoding:

// 뒯 URL encoding
https://unicodefinder.com/search.php?query=%EB%92%AF

Encodings

MD5:

fdec6f62efaf380fa724d6b1c997ca20

SHA1:

bc87bb8f9e74c1b57850d58da2d2571e676896bb

Base64:

65Kv