Unicode Finder

"뵊" U+BD4A(HANGUL SYLLABLE BOEGG)

U+BD4A
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BOEGG

Programming

C
\uBD4A
JavaScript
\uBD4A
Java
\uBD4A
Json
\uBD4A
Python
\uBD4A
Perl
\x{BD4A}
PHP
\x{BD4A}
Ruby
\u{BD4A}
Rust
\u{BD4A}
Go
\uBD4A

Web

CSS
\00BD4A
HtmlDecimal
뵊
HtmlHexadecimal
뵊
Url
%EB%B5%8A

Code

MD5
39cb74c18aae1373d1ee05508b266cfd
Sha1
5f3c5477270854abdad470984e07c053537106ac
Base64
67WK

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBD4A';
console.log(char);  // Output: 뵊

Java:

char c = '\uBD4A';
System.out.println(c);  // Output: 뵊

JSON:

{"text": "\uBD4A"}  // Value: 뵊

Python:

char = '\uBD4A'
print(char)  # Output: 뵊

Perl:

my $char = "\x{BD4A}";
print $char;  # Output: 뵊

PHP:

$char = "\x{BD4A}";
echo $char;  // Output: 뵊

Ruby:

char = "\u{BD4A}"
puts char  # Output: 뵊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48458;</p>  <!-- Display: 뵊 -->

HTML Hexadecimal:

<p>HTML hex: &#xBD4A;</p>  <!-- Display: 뵊 -->

URL Encoding:

// 뵊 URL encoding
https://unicodefinder.com/search.php?query=%EB%B5%8A

Encodings

MD5:

39cb74c18aae1373d1ee05508b266cfd

SHA1:

5f3c5477270854abdad470984e07c053537106ac

Base64:

67WK