Unicode Finder

"傒" U+5092(CJK UNIFIED IDEOGRAPH-5092)

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

Programming

C
\u5092
JavaScript
\u5092
Java
\u5092
Json
\u5092
Python
\u5092
Perl
\x{5092}
PHP
\x{5092}
Ruby
\u{5092}
Rust
\u{5092}
Go
\u5092

Web

CSS
\005092
HtmlDecimal
傒
HtmlHexadecimal
傒
Url
%E5%82%92

Code

MD5
a71a897872734f15a4294cb84e8f5ccb
Sha1
337bca507c0095505b9733b49e1f3a76f356e127
Base64
5YKS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5092';
console.log(char);  // Output: 傒

Java:

char c = '\u5092';
System.out.println(c);  // Output: 傒

JSON:

{"text": "\u5092"}  // Value: 傒

Python:

char = '\u5092'
print(char)  # Output: 傒

Perl:

my $char = "\x{5092}";
print $char;  # Output: 傒

PHP:

$char = "\x{5092}";
echo $char;  // Output: 傒

Ruby:

char = "\u{5092}"
puts char  # Output: 傒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005092";  /* Display: 傒 */
}

HTML Decimal:

<p>HTML decimal: &#20626;</p>  <!-- Display: 傒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5092;</p>  <!-- Display: 傒 -->

URL Encoding:

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

Encodings

MD5:

a71a897872734f15a4294cb84e8f5ccb

SHA1:

337bca507c0095505b9733b49e1f3a76f356e127

Base64:

5YKS