Unicode Finder

"咛" U+549B(CJK UNIFIED IDEOGRAPH-549B)

U+549B
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-549B

Programming

C
\u549B
JavaScript
\u549B
Java
\u549B
Json
\u549B
Python
\u549B
Perl
\x{549B}
PHP
\x{549B}
Ruby
\u{549B}
Rust
\u{549B}
Go
\u549B

Web

CSS
\00549B
HtmlDecimal
咛
HtmlHexadecimal
咛
Url
%E5%92%9B

Code

MD5
b4ae0bece911b2fcf33eb05b716d1d73
Sha1
73d3334cbdbb5c5cd595744494ddc053f966d335
Base64
5ZKb

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u549B';
console.log(char);  // Output: 咛

Java:

char c = '\u549B';
System.out.println(c);  // Output: 咛

JSON:

{"text": "\u549B"}  // Value: 咛

Python:

char = '\u549B'
print(char)  # Output: 咛

Perl:

my $char = "\x{549B}";
print $char;  # Output: 咛

PHP:

$char = "\x{549B}";
echo $char;  // Output: 咛

Ruby:

char = "\u{549B}"
puts char  # Output: 咛

Rust:

let c = '\u{549B}';
println!("{}", c);  // Output: 咛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00549B";  /* Display: 咛 */
}

HTML Decimal:

<p>HTML decimal: &#21659;</p>  <!-- Display: 咛 -->

HTML Hexadecimal:

<p>HTML hex: &#x549B;</p>  <!-- Display: 咛 -->

URL Encoding:

// 咛 URL encoding
https://unicodefinder.com/search.php?query=%E5%92%9B

Encodings

MD5:

b4ae0bece911b2fcf33eb05b716d1d73

SHA1:

73d3334cbdbb5c5cd595744494ddc053f966d335

Base64:

5ZKb