Unicode Finder

"謔" U+8B14(CJK UNIFIED IDEOGRAPH-8B14)

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

Programming

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

Web

CSS
\008B14
HtmlDecimal
謔
HtmlHexadecimal
謔
Url
%E8%AC%94

Code

MD5
5838509ae0cd0269d34bd4abe4862694
Sha1
c3e9959038f2c00ad4f04230b947a453adfd5ffc
Base64
6KyU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8B14';
console.log(char);  // Output: 謔

Java:

char c = '\u8B14';
System.out.println(c);  // Output: 謔

JSON:

{"text": "\u8B14"}  // Value: 謔

Python:

char = '\u8B14'
print(char)  # Output: 謔

Perl:

my $char = "\x{8B14}";
print $char;  # Output: 謔

PHP:

$char = "\x{8B14}";
echo $char;  // Output: 謔

Ruby:

char = "\u{8B14}"
puts char  # Output: 謔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35604;</p>  <!-- Display: 謔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8B14;</p>  <!-- Display: 謔 -->

URL Encoding:

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

Encodings

MD5:

5838509ae0cd0269d34bd4abe4862694

SHA1:

c3e9959038f2c00ad4f04230b947a453adfd5ffc

Base64:

6KyU