Unicode Finder

"븓" U+BE13(HANGUL SYLLABLE BEUD)

U+BE13
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BEUD

Programming

C
\uBE13
JavaScript
\uBE13
Java
\uBE13
Json
\uBE13
Python
\uBE13
Perl
\x{BE13}
PHP
\x{BE13}
Ruby
\u{BE13}
Rust
\u{BE13}
Go
\uBE13

Web

CSS
\00BE13
HtmlDecimal
븓
HtmlHexadecimal
븓
Url
%EB%B8%93

Code

MD5
cb7e26a6eeff701e1f842b59ec9e5413
Sha1
9298dfc4c81e38a5650b878379e0358d1659ce42
Base64
67iT

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE13';
console.log(char);  // Output: 븓

Java:

char c = '\uBE13';
System.out.println(c);  // Output: 븓

JSON:

{"text": "\uBE13"}  // Value: 븓

Python:

char = '\uBE13'
print(char)  # Output: 븓

Perl:

my $char = "\x{BE13}";
print $char;  # Output: 븓

PHP:

$char = "\x{BE13}";
echo $char;  // Output: 븓

Ruby:

char = "\u{BE13}"
puts char  # Output: 븓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48659;</p>  <!-- Display: 븓 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE13;</p>  <!-- Display: 븓 -->

URL Encoding:

// 븓 URL encoding
https://unicodefinder.com/search.php?query=%EB%B8%93

Encodings

MD5:

cb7e26a6eeff701e1f842b59ec9e5413

SHA1:

9298dfc4c81e38a5650b878379e0358d1659ce42

Base64:

67iT