Unicode Finder

"뽎" U+BF4E(HANGUL SYLLABLE BBOLP)

U+BF4E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBOLP

Programming

C
\uBF4E
JavaScript
\uBF4E
Java
\uBF4E
Json
\uBF4E
Python
\uBF4E
Perl
\x{BF4E}
PHP
\x{BF4E}
Ruby
\u{BF4E}
Rust
\u{BF4E}
Go
\uBF4E

Web

CSS
\00BF4E
HtmlDecimal
뽎
HtmlHexadecimal
뽎
Url
%EB%BD%8E

Code

MD5
aa8ba27b0bc4fa0d8cff22974b2be661
Sha1
71cbda5c0fb5a1a6b74ee0d729ccb028cd324f36
Base64
672O

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF4E';
console.log(char);  // Output: 뽎

Java:

char c = '\uBF4E';
System.out.println(c);  // Output: 뽎

JSON:

{"text": "\uBF4E"}  // Value: 뽎

Python:

char = '\uBF4E'
print(char)  # Output: 뽎

Perl:

my $char = "\x{BF4E}";
print $char;  # Output: 뽎

PHP:

$char = "\x{BF4E}";
echo $char;  // Output: 뽎

Ruby:

char = "\u{BF4E}"
puts char  # Output: 뽎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48974;</p>  <!-- Display: 뽎 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF4E;</p>  <!-- Display: 뽎 -->

URL Encoding:

// 뽎 URL encoding
https://unicodefinder.com/search.php?query=%EB%BD%8E

Encodings

MD5:

aa8ba27b0bc4fa0d8cff22974b2be661

SHA1:

71cbda5c0fb5a1a6b74ee0d729ccb028cd324f36

Base64:

672O