Unicode Finder

"傃" U+5083(CJK UNIFIED IDEOGRAPH-5083)

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

Programming

C
\u5083
JavaScript
\u5083
Java
\u5083
Json
\u5083
Python
\u5083
Perl
\x{5083}
PHP
\x{5083}
Ruby
\u{5083}
Rust
\u{5083}
Go
\u5083

Web

CSS
\005083
HtmlDecimal
傃
HtmlHexadecimal
傃
Url
%E5%82%83

Code

MD5
19f8ad20fed3a2c84dfecd6d33d1ba92
Sha1
783c44c8aa63250c327d66310330121f591af61d
Base64
5YKD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5083';
console.log(char);  // Output: 傃

Java:

char c = '\u5083';
System.out.println(c);  // Output: 傃

JSON:

{"text": "\u5083"}  // Value: 傃

Python:

char = '\u5083'
print(char)  # Output: 傃

Perl:

my $char = "\x{5083}";
print $char;  # Output: 傃

PHP:

$char = "\x{5083}";
echo $char;  // Output: 傃

Ruby:

char = "\u{5083}"
puts char  # Output: 傃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005083";  /* Display: 傃 */
}

HTML Decimal:

<p>HTML decimal: &#20611;</p>  <!-- Display: 傃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5083;</p>  <!-- Display: 傃 -->

URL Encoding:

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

Encodings

MD5:

19f8ad20fed3a2c84dfecd6d33d1ba92

SHA1:

783c44c8aa63250c327d66310330121f591af61d

Base64:

5YKD