Unicode Finder

"봊" U+BD0A(HANGUL SYLLABLE BOJ)

U+BD0A
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BOJ

Programming

C
\uBD0A
JavaScript
\uBD0A
Java
\uBD0A
Json
\uBD0A
Python
\uBD0A
Perl
\x{BD0A}
PHP
\x{BD0A}
Ruby
\u{BD0A}
Rust
\u{BD0A}
Go
\uBD0A

Web

CSS
\00BD0A
HtmlDecimal
봊
HtmlHexadecimal
봊
Url
%EB%B4%8A

Code

MD5
1f7f96795f42e700565b81e9f22f73e8
Sha1
4156c221a89adf65b1ec1d80951fb9c935fe6887
Base64
67SK

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBD0A';
console.log(char);  // Output: 봊

Java:

char c = '\uBD0A';
System.out.println(c);  // Output: 봊

JSON:

{"text": "\uBD0A"}  // Value: 봊

Python:

char = '\uBD0A'
print(char)  # Output: 봊

Perl:

my $char = "\x{BD0A}";
print $char;  # Output: 봊

PHP:

$char = "\x{BD0A}";
echo $char;  // Output: 봊

Ruby:

char = "\u{BD0A}"
puts char  # Output: 봊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48394;</p>  <!-- Display: 봊 -->

HTML Hexadecimal:

<p>HTML hex: &#xBD0A;</p>  <!-- Display: 봊 -->

URL Encoding:

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

Encodings

MD5:

1f7f96795f42e700565b81e9f22f73e8

SHA1:

4156c221a89adf65b1ec1d80951fb9c935fe6887

Base64:

67SK