Unicode Finder

"憘" U+6198(CJK UNIFIED IDEOGRAPH-6198)

U+6198
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6198

Programming

C
\u6198
JavaScript
\u6198
Java
\u6198
Json
\u6198
Python
\u6198
Perl
\x{6198}
PHP
\x{6198}
Ruby
\u{6198}
Rust
\u{6198}
Go
\u6198

Web

CSS
\006198
HtmlDecimal
憘
HtmlHexadecimal
憘
Url
%E6%86%98

Code

MD5
18c8fda842743cb14ea566eb09db6e29
Sha1
02e6d9d41d808122b9cadc44c8890d510631363b
Base64
5oaY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6198';
console.log(char);  // Output: 憘

Java:

char c = '\u6198';
System.out.println(c);  // Output: 憘

JSON:

{"text": "\u6198"}  // Value: 憘

Python:

char = '\u6198'
print(char)  # Output: 憘

Perl:

my $char = "\x{6198}";
print $char;  # Output: 憘

PHP:

$char = "\x{6198}";
echo $char;  // Output: 憘

Ruby:

char = "\u{6198}"
puts char  # Output: 憘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006198";  /* Display: 憘 */
}

HTML Decimal:

<p>HTML decimal: &#24984;</p>  <!-- Display: 憘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6198;</p>  <!-- Display: 憘 -->

URL Encoding:

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

Encodings

MD5:

18c8fda842743cb14ea566eb09db6e29

SHA1:

02e6d9d41d808122b9cadc44c8890d510631363b

Base64:

5oaY