Unicode Finder

"謇" U+8B07(CJK UNIFIED IDEOGRAPH-8B07)

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

Programming

C
\u8B07
JavaScript
\u8B07
Java
\u8B07
Json
\u8B07
Python
\u8B07
Perl
\x{8B07}
PHP
\x{8B07}
Ruby
\u{8B07}
Rust
\u{8B07}
Go
\u8B07

Web

CSS
\008B07
HtmlDecimal
謇
HtmlHexadecimal
謇
Url
%E8%AC%87

Code

MD5
fffa251548de7a579de2605f673b4e13
Sha1
b5d41cb53fce91b3049f571c7540f9ed27a7995e
Base64
6KyH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8B07';
console.log(char);  // Output: 謇

Java:

char c = '\u8B07';
System.out.println(c);  // Output: 謇

JSON:

{"text": "\u8B07"}  // Value: 謇

Python:

char = '\u8B07'
print(char)  # Output: 謇

Perl:

my $char = "\x{8B07}";
print $char;  # Output: 謇

PHP:

$char = "\x{8B07}";
echo $char;  // Output: 謇

Ruby:

char = "\u{8B07}"
puts char  # Output: 謇

Rust:

let c = '\u{8B07}';
println!("{}", c);  // Output: 謇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008B07";  /* Display: 謇 */
}

HTML Decimal:

<p>HTML decimal: &#35591;</p>  <!-- Display: 謇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8B07;</p>  <!-- Display: 謇 -->

URL Encoding:

// 謇 URL encoding
https://unicodefinder.com/search.php?query=%E8%AC%87

Encodings

MD5:

fffa251548de7a579de2605f673b4e13

SHA1:

b5d41cb53fce91b3049f571c7540f9ed27a7995e

Base64:

6KyH