Unicode Finder

"傑" U+5091(CJK UNIFIED IDEOGRAPH-5091)

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

Programming

C
\u5091
JavaScript
\u5091
Java
\u5091
Json
\u5091
Python
\u5091
Perl
\x{5091}
PHP
\x{5091}
Ruby
\u{5091}
Rust
\u{5091}
Go
\u5091

Web

CSS
\005091
HtmlDecimal
傑
HtmlHexadecimal
傑
Url
%E5%82%91

Code

MD5
7dce49432e0a14d0dee0aa925ac169a0
Sha1
30f639d73f4ad4907fe9ff7a0d4e03bd576fedbd
Base64
5YKR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5091';
console.log(char);  // Output: 傑

Java:

char c = '\u5091';
System.out.println(c);  // Output: 傑

JSON:

{"text": "\u5091"}  // Value: 傑

Python:

char = '\u5091'
print(char)  # Output: 傑

Perl:

my $char = "\x{5091}";
print $char;  # Output: 傑

PHP:

$char = "\x{5091}";
echo $char;  // Output: 傑

Ruby:

char = "\u{5091}"
puts char  # Output: 傑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005091";  /* Display: 傑 */
}

HTML Decimal:

<p>HTML decimal: &#20625;</p>  <!-- Display: 傑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5091;</p>  <!-- Display: 傑 -->

URL Encoding:

// 傑 URL encoding
https://unicodefinder.com/search.php?query=%E5%82%91

Encodings

MD5:

7dce49432e0a14d0dee0aa925ac169a0

SHA1:

30f639d73f4ad4907fe9ff7a0d4e03bd576fedbd

Base64:

5YKR