Unicode Finder

"咆" U+5486(CJK UNIFIED IDEOGRAPH-5486)

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

Programming

C
\u5486
JavaScript
\u5486
Java
\u5486
Json
\u5486
Python
\u5486
Perl
\x{5486}
PHP
\x{5486}
Ruby
\u{5486}
Rust
\u{5486}
Go
\u5486

Web

CSS
\005486
HtmlDecimal
咆
HtmlHexadecimal
咆
Url
%E5%92%86

Code

MD5
0eb3990b39651fafd039628045890673
Sha1
0228d99b865df1cf99d00f60985c12f4074f8d49
Base64
5ZKG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5486';
console.log(char);  // Output: 咆

Java:

char c = '\u5486';
System.out.println(c);  // Output: 咆

JSON:

{"text": "\u5486"}  // Value: 咆

Python:

char = '\u5486'
print(char)  # Output: 咆

Perl:

my $char = "\x{5486}";
print $char;  # Output: 咆

PHP:

$char = "\x{5486}";
echo $char;  // Output: 咆

Ruby:

char = "\u{5486}"
puts char  # Output: 咆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005486";  /* Display: 咆 */
}

HTML Decimal:

<p>HTML decimal: &#21638;</p>  <!-- Display: 咆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5486;</p>  <!-- Display: 咆 -->

URL Encoding:

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

Encodings

MD5:

0eb3990b39651fafd039628045890673

SHA1:

0228d99b865df1cf99d00f60985c12f4074f8d49

Base64:

5ZKG