Unicode Finder

"批" U+6279(CJK UNIFIED IDEOGRAPH-6279)

U+6279
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-6279

Programming

C
\u6279
JavaScript
\u6279
Java
\u6279
Json
\u6279
Python
\u6279
Perl
\x{6279}
PHP
\x{6279}
Ruby
\u{6279}
Rust
\u{6279}
Go
\u6279

Web

CSS
\006279
HtmlDecimal
批
HtmlHexadecimal
批
Url
%E6%89%B9

Code

MD5
394fb761419ac5b685e896e5fe13756b
Sha1
be706b81627dd8cdafa5f657c2178b5220acad7c
Base64
5om5

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6279';
console.log(char);  // Output: 批

Java:

char c = '\u6279';
System.out.println(c);  // Output: 批

JSON:

{"text": "\u6279"}  // Value: 批

Python:

char = '\u6279'
print(char)  # Output: 批

Perl:

my $char = "\x{6279}";
print $char;  # Output: 批

PHP:

$char = "\x{6279}";
echo $char;  // Output: 批

Ruby:

char = "\u{6279}"
puts char  # Output: 批

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006279";  /* Display: 批 */
}

HTML Decimal:

<p>HTML decimal: &#25209;</p>  <!-- Display: 批 -->

HTML Hexadecimal:

<p>HTML hex: &#x6279;</p>  <!-- Display: 批 -->

URL Encoding:

// 批 URL encoding
https://unicodefinder.com/search.php?query=%E6%89%B9

Encodings

MD5:

394fb761419ac5b685e896e5fe13756b

SHA1:

be706b81627dd8cdafa5f657c2178b5220acad7c

Base64:

5om5