Unicode Finder

"愒" U+6112(CJK UNIFIED IDEOGRAPH-6112)

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

Programming

C
\u6112
JavaScript
\u6112
Java
\u6112
Json
\u6112
Python
\u6112
Perl
\x{6112}
PHP
\x{6112}
Ruby
\u{6112}
Rust
\u{6112}
Go
\u6112

Web

CSS
\006112
HtmlDecimal
愒
HtmlHexadecimal
愒
Url
%E6%84%92

Code

MD5
2d448b520bb01638653055ded26cef39
Sha1
61cb7db38667664312b20625559024223002e4f7
Base64
5oSS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6112';
console.log(char);  // Output: 愒

Java:

char c = '\u6112';
System.out.println(c);  // Output: 愒

JSON:

{"text": "\u6112"}  // Value: 愒

Python:

char = '\u6112'
print(char)  # Output: 愒

Perl:

my $char = "\x{6112}";
print $char;  # Output: 愒

PHP:

$char = "\x{6112}";
echo $char;  // Output: 愒

Ruby:

char = "\u{6112}"
puts char  # Output: 愒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006112";  /* Display: 愒 */
}

HTML Decimal:

<p>HTML decimal: &#24850;</p>  <!-- Display: 愒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6112;</p>  <!-- Display: 愒 -->

URL Encoding:

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

Encodings

MD5:

2d448b520bb01638653055ded26cef39

SHA1:

61cb7db38667664312b20625559024223002e4f7

Base64:

5oSS