Unicode Finder

"랫" U+B7AB(HANGUL SYLLABLE RAES)

U+B7AB
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE RAES

Programming

C
\uB7AB
JavaScript
\uB7AB
Java
\uB7AB
Json
\uB7AB
Python
\uB7AB
Perl
\x{B7AB}
PHP
\x{B7AB}
Ruby
\u{B7AB}
Rust
\u{B7AB}
Go
\uB7AB

Web

CSS
\00B7AB
HtmlDecimal
랫
HtmlHexadecimal
랫
Url
%EB%9E%AB

Code

MD5
70f149afffbe40c34f21915c7eedf2c9
Sha1
a2bb3e80d5c6427d5a8206bd5d61294d619cd7c5
Base64
656r

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uB7AB';
console.log(char);  // Output: 랫

Java:

char c = '\uB7AB';
System.out.println(c);  // Output: 랫

JSON:

{"text": "\uB7AB"}  // Value: 랫

Python:

char = '\uB7AB'
print(char)  # Output: 랫

Perl:

my $char = "\x{B7AB}";
print $char;  # Output: 랫

PHP:

$char = "\x{B7AB}";
echo $char;  // Output: 랫

Ruby:

char = "\u{B7AB}"
puts char  # Output: 랫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47019;</p>  <!-- Display: 랫 -->

HTML Hexadecimal:

<p>HTML hex: &#xB7AB;</p>  <!-- Display: 랫 -->

URL Encoding:

// 랫 URL encoding
https://unicodefinder.com/search.php?query=%EB%9E%AB

Encodings

MD5:

70f149afffbe40c34f21915c7eedf2c9

SHA1:

a2bb3e80d5c6427d5a8206bd5d61294d619cd7c5

Base64:

656r