Unicode Finder

"殴" U+6BB4(CJK UNIFIED IDEOGRAPH-6BB4)

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

Programming

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

Web

CSS
\006BB4
HtmlDecimal
殴
HtmlHexadecimal
殴
Url
%E6%AE%B4

Code

MD5
b731e6e0b9212419db3977acf700c059
Sha1
eda4d896f3daca502f30c418501a7222823f2a09
Base64
5q60

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BB4';
console.log(char);  // Output: 殴

Java:

char c = '\u6BB4';
System.out.println(c);  // Output: 殴

JSON:

{"text": "\u6BB4"}  // Value: 殴

Python:

char = '\u6BB4'
print(char)  # Output: 殴

Perl:

my $char = "\x{6BB4}";
print $char;  # Output: 殴

PHP:

$char = "\x{6BB4}";
echo $char;  // Output: 殴

Ruby:

char = "\u{6BB4}"
puts char  # Output: 殴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27572;</p>  <!-- Display: 殴 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BB4;</p>  <!-- Display: 殴 -->

URL Encoding:

// 殴 URL encoding
https://unicodefinder.com/search.php?query=%E6%AE%B4

Encodings

MD5:

b731e6e0b9212419db3977acf700c059

SHA1:

eda4d896f3daca502f30c418501a7222823f2a09

Base64:

5q60