Unicode Finder

"憑" U+6191(CJK UNIFIED IDEOGRAPH-6191)

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

Programming

C
\u6191
JavaScript
\u6191
Java
\u6191
Json
\u6191
Python
\u6191
Perl
\x{6191}
PHP
\x{6191}
Ruby
\u{6191}
Rust
\u{6191}
Go
\u6191

Web

CSS
\006191
HtmlDecimal
憑
HtmlHexadecimal
憑
Url
%E6%86%91

Code

MD5
c9dda345fd70ac528844fc8b1346f9f8
Sha1
b93c279d5747db8ed61f48204074f7624b389ac3
Base64
5oaR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6191';
console.log(char);  // Output: 憑

Java:

char c = '\u6191';
System.out.println(c);  // Output: 憑

JSON:

{"text": "\u6191"}  // Value: 憑

Python:

char = '\u6191'
print(char)  # Output: 憑

Perl:

my $char = "\x{6191}";
print $char;  # Output: 憑

PHP:

$char = "\x{6191}";
echo $char;  // Output: 憑

Ruby:

char = "\u{6191}"
puts char  # Output: 憑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006191";  /* Display: 憑 */
}

HTML Decimal:

<p>HTML decimal: &#24977;</p>  <!-- Display: 憑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6191;</p>  <!-- Display: 憑 -->

URL Encoding:

// 憑 URL encoding
https://unicodefinder.com/search.php?query=%E6%86%91

Encodings

MD5:

c9dda345fd70ac528844fc8b1346f9f8

SHA1:

b93c279d5747db8ed61f48204074f7624b389ac3

Base64:

5oaR