Unicode Finder

"傓" U+5093(CJK UNIFIED IDEOGRAPH-5093)

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

Programming

C
\u5093
JavaScript
\u5093
Java
\u5093
Json
\u5093
Python
\u5093
Perl
\x{5093}
PHP
\x{5093}
Ruby
\u{5093}
Rust
\u{5093}
Go
\u5093

Web

CSS
\005093
HtmlDecimal
傓
HtmlHexadecimal
傓
Url
%E5%82%93

Code

MD5
0380f76f1736e3040cc466f9d2ad0001
Sha1
af1db7cd4ebaec560e2bc970832f0714a6d9c070
Base64
5YKT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5093';
console.log(char);  // Output: 傓

Java:

char c = '\u5093';
System.out.println(c);  // Output: 傓

JSON:

{"text": "\u5093"}  // Value: 傓

Python:

char = '\u5093'
print(char)  # Output: 傓

Perl:

my $char = "\x{5093}";
print $char;  # Output: 傓

PHP:

$char = "\x{5093}";
echo $char;  // Output: 傓

Ruby:

char = "\u{5093}"
puts char  # Output: 傓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005093";  /* Display: 傓 */
}

HTML Decimal:

<p>HTML decimal: &#20627;</p>  <!-- Display: 傓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5093;</p>  <!-- Display: 傓 -->

URL Encoding:

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

Encodings

MD5:

0380f76f1736e3040cc466f9d2ad0001

SHA1:

af1db7cd4ebaec560e2bc970832f0714a6d9c070

Base64:

5YKT