Unicode Finder

"橫" U+6A6B(CJK UNIFIED IDEOGRAPH-6A6B)

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

Programming

C
\u6A6B
JavaScript
\u6A6B
Java
\u6A6B
Json
\u6A6B
Python
\u6A6B
Perl
\x{6A6B}
PHP
\x{6A6B}
Ruby
\u{6A6B}
Rust
\u{6A6B}
Go
\u6A6B

Web

CSS
\006A6B
HtmlDecimal
橫
HtmlHexadecimal
橫
Url
%E6%A9%AB

Code

MD5
e162b815c340d1ccf468934e1c082652
Sha1
e5d7aafe46b1545a6bdb441febb7670ba70bb951
Base64
5qmr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6A6B';
console.log(char);  // Output: 橫

Java:

char c = '\u6A6B';
System.out.println(c);  // Output: 橫

JSON:

{"text": "\u6A6B"}  // Value: 橫

Python:

char = '\u6A6B'
print(char)  # Output: 橫

Perl:

my $char = "\x{6A6B}";
print $char;  # Output: 橫

PHP:

$char = "\x{6A6B}";
echo $char;  // Output: 橫

Ruby:

char = "\u{6A6B}"
puts char  # Output: 橫

Rust:

let c = '\u{6A6B}';
println!("{}", c);  // Output: 橫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006A6B";  /* Display: 橫 */
}

HTML Decimal:

<p>HTML decimal: &#27243;</p>  <!-- Display: 橫 -->

HTML Hexadecimal:

<p>HTML hex: &#x6A6B;</p>  <!-- Display: 橫 -->

URL Encoding:

// 橫 URL encoding
https://unicodefinder.com/search.php?query=%E6%A9%AB

Encodings

MD5:

e162b815c340d1ccf468934e1c082652

SHA1:

e5d7aafe46b1545a6bdb441febb7670ba70bb951

Base64:

5qmr