Unicode Finder

"啁" U+5541(CJK UNIFIED IDEOGRAPH-5541)

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

Programming

C
\u5541
JavaScript
\u5541
Java
\u5541
Json
\u5541
Python
\u5541
Perl
\x{5541}
PHP
\x{5541}
Ruby
\u{5541}
Rust
\u{5541}
Go
\u5541

Web

CSS
\005541
HtmlDecimal
啁
HtmlHexadecimal
啁
Url
%E5%95%81

Code

MD5
00630d7f127872392ea729f406d7afc8
Sha1
007e775a05c4cafb82665eec9c410b360796dded
Base64
5ZWB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5541';
console.log(char);  // Output: 啁

Java:

char c = '\u5541';
System.out.println(c);  // Output: 啁

JSON:

{"text": "\u5541"}  // Value: 啁

Python:

char = '\u5541'
print(char)  # Output: 啁

Perl:

my $char = "\x{5541}";
print $char;  # Output: 啁

PHP:

$char = "\x{5541}";
echo $char;  // Output: 啁

Ruby:

char = "\u{5541}"
puts char  # Output: 啁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005541";  /* Display: 啁 */
}

HTML Decimal:

<p>HTML decimal: &#21825;</p>  <!-- Display: 啁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5541;</p>  <!-- Display: 啁 -->

URL Encoding:

// 啁 URL encoding
https://unicodefinder.com/search.php?query=%E5%95%81

Encodings

MD5:

00630d7f127872392ea729f406d7afc8

SHA1:

007e775a05c4cafb82665eec9c410b360796dded

Base64:

5ZWB