Unicode Finder

"憒" U+6192(CJK UNIFIED IDEOGRAPH-6192)

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

Programming

C
\u6192
JavaScript
\u6192
Java
\u6192
Json
\u6192
Python
\u6192
Perl
\x{6192}
PHP
\x{6192}
Ruby
\u{6192}
Rust
\u{6192}
Go
\u6192

Web

CSS
\006192
HtmlDecimal
憒
HtmlHexadecimal
憒
Url
%E6%86%92

Code

MD5
a0c64080b4d38cc1ac8df6a199253e64
Sha1
a893545c9462ea30f7fc9fcd9e6d16d790f53aaf
Base64
5oaS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6192';
console.log(char);  // Output: 憒

Java:

char c = '\u6192';
System.out.println(c);  // Output: 憒

JSON:

{"text": "\u6192"}  // Value: 憒

Python:

char = '\u6192'
print(char)  # Output: 憒

Perl:

my $char = "\x{6192}";
print $char;  # Output: 憒

PHP:

$char = "\x{6192}";
echo $char;  // Output: 憒

Ruby:

char = "\u{6192}"
puts char  # Output: 憒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006192";  /* Display: 憒 */
}

HTML Decimal:

<p>HTML decimal: &#24978;</p>  <!-- Display: 憒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6192;</p>  <!-- Display: 憒 -->

URL Encoding:

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

Encodings

MD5:

a0c64080b4d38cc1ac8df6a199253e64

SHA1:

a893545c9462ea30f7fc9fcd9e6d16d790f53aaf

Base64:

5oaS