Unicode Finder

"붴" U+BDB4(HANGUL SYLLABLE BWEOK)

U+BDB4
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BWEOK

Programming

C
\uBDB4
JavaScript
\uBDB4
Java
\uBDB4
Json
\uBDB4
Python
\uBDB4
Perl
\x{BDB4}
PHP
\x{BDB4}
Ruby
\u{BDB4}
Rust
\u{BDB4}
Go
\uBDB4

Web

CSS
\00BDB4
HtmlDecimal
붴
HtmlHexadecimal
붴
Url
%EB%B6%B4

Code

MD5
446dfb7126969eecf16d14ec6d04d4c7
Sha1
07ddda603b2f1b60c4a0e768949bc8ef9b8f3c27
Base64
67a0

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBDB4';
console.log(char);  // Output: 붴

Java:

char c = '\uBDB4';
System.out.println(c);  // Output: 붴

JSON:

{"text": "\uBDB4"}  // Value: 붴

Python:

char = '\uBDB4'
print(char)  # Output: 붴

Perl:

my $char = "\x{BDB4}";
print $char;  # Output: 붴

PHP:

$char = "\x{BDB4}";
echo $char;  // Output: 붴

Ruby:

char = "\u{BDB4}"
puts char  # Output: 붴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48564;</p>  <!-- Display: 붴 -->

HTML Hexadecimal:

<p>HTML hex: &#xBDB4;</p>  <!-- Display: 붴 -->

URL Encoding:

// 붴 URL encoding
https://unicodefinder.com/search.php?query=%EB%B6%B4

Encodings

MD5:

446dfb7126969eecf16d14ec6d04d4c7

SHA1:

07ddda603b2f1b60c4a0e768949bc8ef9b8f3c27

Base64:

67a0