Unicode Finder

"家" U+5BB6(CJK UNIFIED IDEOGRAPH-5BB6)

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

Programming

C
\u5BB6
JavaScript
\u5BB6
Java
\u5BB6
Json
\u5BB6
Python
\u5BB6
Perl
\x{5BB6}
PHP
\x{5BB6}
Ruby
\u{5BB6}
Rust
\u{5BB6}
Go
\u5BB6

Web

CSS
\005BB6
HtmlDecimal
家
HtmlHexadecimal
家
Url
%E5%AE%B6

Code

MD5
a6cdd2a00bc8557f94665a0422a54329
Sha1
7de8177ce74b123ce9744fd680804140ceee9abc
Base64
5a62

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BB6';
console.log(char);  // Output: 家

Java:

char c = '\u5BB6';
System.out.println(c);  // Output: 家

JSON:

{"text": "\u5BB6"}  // Value: 家

Python:

char = '\u5BB6'
print(char)  # Output: 家

Perl:

my $char = "\x{5BB6}";
print $char;  # Output: 家

PHP:

$char = "\x{5BB6}";
echo $char;  // Output: 家

Ruby:

char = "\u{5BB6}"
puts char  # Output: 家

Rust:

let c = '\u{5BB6}';
println!("{}", c);  // Output: 家

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005BB6";  /* Display: 家 */
}

HTML Decimal:

<p>HTML decimal: &#23478;</p>  <!-- Display: 家 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BB6;</p>  <!-- Display: 家 -->

URL Encoding:

// 家 URL encoding
https://unicodefinder.com/search.php?query=%E5%AE%B6

Encodings

MD5:

a6cdd2a00bc8557f94665a0422a54329

SHA1:

7de8177ce74b123ce9744fd680804140ceee9abc

Base64:

5a62