Unicode Finder

"憙" U+6199(CJK UNIFIED IDEOGRAPH-6199)

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

Programming

C
\u6199
JavaScript
\u6199
Java
\u6199
Json
\u6199
Python
\u6199
Perl
\x{6199}
PHP
\x{6199}
Ruby
\u{6199}
Rust
\u{6199}
Go
\u6199

Web

CSS
\006199
HtmlDecimal
憙
HtmlHexadecimal
憙
Url
%E6%86%99

Code

MD5
1b42d86c53f12e7ce6c4adc0cdedd4ee
Sha1
b29ecd9c705297812a2b05c6b13658c4cfc0b9a7
Base64
5oaZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6199';
console.log(char);  // Output: 憙

Java:

char c = '\u6199';
System.out.println(c);  // Output: 憙

JSON:

{"text": "\u6199"}  // Value: 憙

Python:

char = '\u6199'
print(char)  # Output: 憙

Perl:

my $char = "\x{6199}";
print $char;  # Output: 憙

PHP:

$char = "\x{6199}";
echo $char;  // Output: 憙

Ruby:

char = "\u{6199}"
puts char  # Output: 憙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006199";  /* Display: 憙 */
}

HTML Decimal:

<p>HTML decimal: &#24985;</p>  <!-- Display: 憙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6199;</p>  <!-- Display: 憙 -->

URL Encoding:

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

Encodings

MD5:

1b42d86c53f12e7ce6c4adc0cdedd4ee

SHA1:

b29ecd9c705297812a2b05c6b13658c4cfc0b9a7

Base64:

5oaZ