Unicode Finder

"傅" U+5085(CJK UNIFIED IDEOGRAPH-5085)

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

Programming

C
\u5085
JavaScript
\u5085
Java
\u5085
Json
\u5085
Python
\u5085
Perl
\x{5085}
PHP
\x{5085}
Ruby
\u{5085}
Rust
\u{5085}
Go
\u5085

Web

CSS
\005085
HtmlDecimal
傅
HtmlHexadecimal
傅
Url
%E5%82%85

Code

MD5
312dadeb14ede20cf2f351a58900c42e
Sha1
c055c88f467109729e227741763bcb249ff7d75e
Base64
5YKF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5085';
console.log(char);  // Output: 傅

Java:

char c = '\u5085';
System.out.println(c);  // Output: 傅

JSON:

{"text": "\u5085"}  // Value: 傅

Python:

char = '\u5085'
print(char)  # Output: 傅

Perl:

my $char = "\x{5085}";
print $char;  # Output: 傅

PHP:

$char = "\x{5085}";
echo $char;  // Output: 傅

Ruby:

char = "\u{5085}"
puts char  # Output: 傅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005085";  /* Display: 傅 */
}

HTML Decimal:

<p>HTML decimal: &#20613;</p>  <!-- Display: 傅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5085;</p>  <!-- Display: 傅 -->

URL Encoding:

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

Encodings

MD5:

312dadeb14ede20cf2f351a58900c42e

SHA1:

c055c88f467109729e227741763bcb249ff7d75e

Base64:

5YKF