Unicode Finder

"咔" U+5494(CJK UNIFIED IDEOGRAPH-5494)

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

Programming

C
\u5494
JavaScript
\u5494
Java
\u5494
Json
\u5494
Python
\u5494
Perl
\x{5494}
PHP
\x{5494}
Ruby
\u{5494}
Rust
\u{5494}
Go
\u5494

Web

CSS
\005494
HtmlDecimal
咔
HtmlHexadecimal
咔
Url
%E5%92%94

Code

MD5
98d1ebbf3e2c1f38cff8c19734efd34d
Sha1
97a8d8750386df22461c2943d663cad142920037
Base64
5ZKU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5494';
console.log(char);  // Output: 咔

Java:

char c = '\u5494';
System.out.println(c);  // Output: 咔

JSON:

{"text": "\u5494"}  // Value: 咔

Python:

char = '\u5494'
print(char)  # Output: 咔

Perl:

my $char = "\x{5494}";
print $char;  # Output: 咔

PHP:

$char = "\x{5494}";
echo $char;  // Output: 咔

Ruby:

char = "\u{5494}"
puts char  # Output: 咔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005494";  /* Display: 咔 */
}

HTML Decimal:

<p>HTML decimal: &#21652;</p>  <!-- Display: 咔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5494;</p>  <!-- Display: 咔 -->

URL Encoding:

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

Encodings

MD5:

98d1ebbf3e2c1f38cff8c19734efd34d

SHA1:

97a8d8750386df22461c2943d663cad142920037

Base64:

5ZKU