Unicode Finder

"咙" U+5499(CJK UNIFIED IDEOGRAPH-5499)

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

Programming

C
\u5499
JavaScript
\u5499
Java
\u5499
Json
\u5499
Python
\u5499
Perl
\x{5499}
PHP
\x{5499}
Ruby
\u{5499}
Rust
\u{5499}
Go
\u5499

Web

CSS
\005499
HtmlDecimal
咙
HtmlHexadecimal
咙
Url
%E5%92%99

Code

MD5
8a8bf40cefd611cdeb4bd675e01a937a
Sha1
8d7f4bbbe89b47cbe32ee08ede17230d76e78241
Base64
5ZKZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5499';
console.log(char);  // Output: 咙

Java:

char c = '\u5499';
System.out.println(c);  // Output: 咙

JSON:

{"text": "\u5499"}  // Value: 咙

Python:

char = '\u5499'
print(char)  # Output: 咙

Perl:

my $char = "\x{5499}";
print $char;  # Output: 咙

PHP:

$char = "\x{5499}";
echo $char;  // Output: 咙

Ruby:

char = "\u{5499}"
puts char  # Output: 咙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005499";  /* Display: 咙 */
}

HTML Decimal:

<p>HTML decimal: &#21657;</p>  <!-- Display: 咙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5499;</p>  <!-- Display: 咙 -->

URL Encoding:

// 咙 URL encoding
https://unicodefinder.com/search.php?query=%E5%92%99

Encodings

MD5:

8a8bf40cefd611cdeb4bd675e01a937a

SHA1:

8d7f4bbbe89b47cbe32ee08ede17230d76e78241

Base64:

5ZKZ