Unicode Finder

"冕" U+5195(CJK UNIFIED IDEOGRAPH-5195)

U+5195
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5195

Programming

C
\u5195
JavaScript
\u5195
Java
\u5195
Json
\u5195
Python
\u5195
Perl
\x{5195}
PHP
\x{5195}
Ruby
\u{5195}
Rust
\u{5195}
Go
\u5195

Web

CSS
\005195
HtmlDecimal
冕
HtmlHexadecimal
冕
Url
%E5%86%95

Code

MD5
fa95e1aaa4b94f1b24014fd2625e4ba1
Sha1
38dfdb113dbaf25a2b57a05fe34b687183cd3fa5
Base64
5YaV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5195';
console.log(char);  // Output: 冕

Java:

char c = '\u5195';
System.out.println(c);  // Output: 冕

JSON:

{"text": "\u5195"}  // Value: 冕

Python:

char = '\u5195'
print(char)  # Output: 冕

Perl:

my $char = "\x{5195}";
print $char;  # Output: 冕

PHP:

$char = "\x{5195}";
echo $char;  // Output: 冕

Ruby:

char = "\u{5195}"
puts char  # Output: 冕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005195";  /* Display: 冕 */
}

HTML Decimal:

<p>HTML decimal: &#20885;</p>  <!-- Display: 冕 -->

HTML Hexadecimal:

<p>HTML hex: &#x5195;</p>  <!-- Display: 冕 -->

URL Encoding:

// 冕 URL encoding
https://unicodefinder.com/search.php?query=%E5%86%95

Encodings

MD5:

fa95e1aaa4b94f1b24014fd2625e4ba1

SHA1:

38dfdb113dbaf25a2b57a05fe34b687183cd3fa5

Base64:

5YaV