Unicode Finder

"벃" U+BC83(HANGUL SYLLABLE BYAEH)

U+BC83
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BYAEH

Programming

C
\uBC83
JavaScript
\uBC83
Java
\uBC83
Json
\uBC83
Python
\uBC83
Perl
\x{BC83}
PHP
\x{BC83}
Ruby
\u{BC83}
Rust
\u{BC83}
Go
\uBC83

Web

CSS
\00BC83
HtmlDecimal
벃
HtmlHexadecimal
벃
Url
%EB%B2%83

Code

MD5
eac7d9a1e03d889f0395a815823eb93e
Sha1
890902bf712784b164f753c77329140c423da1ab
Base64
67KD

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC83';
console.log(char);  // Output: 벃

Java:

char c = '\uBC83';
System.out.println(c);  // Output: 벃

JSON:

{"text": "\uBC83"}  // Value: 벃

Python:

char = '\uBC83'
print(char)  # Output: 벃

Perl:

my $char = "\x{BC83}";
print $char;  # Output: 벃

PHP:

$char = "\x{BC83}";
echo $char;  // Output: 벃

Ruby:

char = "\u{BC83}"
puts char  # Output: 벃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48259;</p>  <!-- Display: 벃 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC83;</p>  <!-- Display: 벃 -->

URL Encoding:

// 벃 URL encoding
https://unicodefinder.com/search.php?query=%EB%B2%83

Encodings

MD5:

eac7d9a1e03d889f0395a815823eb93e

SHA1:

890902bf712784b164f753c77329140c423da1ab

Base64:

67KD