Unicode Finder

"먻" U+BA3B(HANGUL SYLLABLE MEOGS)

U+BA3B
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE MEOGS

Programming

C
\uBA3B
JavaScript
\uBA3B
Java
\uBA3B
Json
\uBA3B
Python
\uBA3B
Perl
\x{BA3B}
PHP
\x{BA3B}
Ruby
\u{BA3B}
Rust
\u{BA3B}
Go
\uBA3B

Web

CSS
\00BA3B
HtmlDecimal
먻
HtmlHexadecimal
먻
Url
%EB%A8%BB

Code

MD5
37515eae9556b070665de389f3621fcd
Sha1
39b8bf9d3734b76d67e233b4471a5a5c13baa063
Base64
66i7

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uBA3B';
console.log(char);  // Output: 먻

Java:

char c = '\uBA3B';
System.out.println(c);  // Output: 먻

JSON:

{"text": "\uBA3B"}  // Value: 먻

Python:

char = '\uBA3B'
print(char)  # Output: 먻

Perl:

my $char = "\x{BA3B}";
print $char;  # Output: 먻

PHP:

$char = "\x{BA3B}";
echo $char;  // Output: 먻

Ruby:

char = "\u{BA3B}"
puts char  # Output: 먻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47675;</p>  <!-- Display: 먻 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA3B;</p>  <!-- Display: 먻 -->

URL Encoding:

// 먻 URL encoding
https://unicodefinder.com/search.php?query=%EB%A8%BB

Encodings

MD5:

37515eae9556b070665de389f3621fcd

SHA1:

39b8bf9d3734b76d67e233b4471a5a5c13baa063

Base64:

66i7