Unicode Finder

"偳" U+5073(CJK UNIFIED IDEOGRAPH-5073)

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

Programming

C
\u5073
JavaScript
\u5073
Java
\u5073
Json
\u5073
Python
\u5073
Perl
\x{5073}
PHP
\x{5073}
Ruby
\u{5073}
Rust
\u{5073}
Go
\u5073

Web

CSS
\005073
HtmlDecimal
偳
HtmlHexadecimal
偳
Url
%E5%81%B3

Code

MD5
1ea260a178a4c7e29554d1c5f2b7e2f4
Sha1
ac700ebcd59ada0ee6829799f7debb5110d4460a
Base64
5YGz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5073';
console.log(char);  // Output: 偳

Java:

char c = '\u5073';
System.out.println(c);  // Output: 偳

JSON:

{"text": "\u5073"}  // Value: 偳

Python:

char = '\u5073'
print(char)  # Output: 偳

Perl:

my $char = "\x{5073}";
print $char;  # Output: 偳

PHP:

$char = "\x{5073}";
echo $char;  // Output: 偳

Ruby:

char = "\u{5073}"
puts char  # Output: 偳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005073";  /* Display: 偳 */
}

HTML Decimal:

<p>HTML decimal: &#20595;</p>  <!-- Display: 偳 -->

HTML Hexadecimal:

<p>HTML hex: &#x5073;</p>  <!-- Display: 偳 -->

URL Encoding:

// 偳 URL encoding
https://unicodefinder.com/search.php?query=%E5%81%B3

Encodings

MD5:

1ea260a178a4c7e29554d1c5f2b7e2f4

SHA1:

ac700ebcd59ada0ee6829799f7debb5110d4460a

Base64:

5YGz