Unicode Finder

"謳" U+8B33(CJK UNIFIED IDEOGRAPH-8B33)

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

Programming

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

Web

CSS
\008B33
HtmlDecimal
謳
HtmlHexadecimal
謳
Url
%E8%AC%B3

Code

MD5
1dffc68f8ea4b3d34243c5e03972a1d8
Sha1
eb9afcc0564448baa2c335eb5ed2863c4766fb81
Base64
6Kyz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8B33';
console.log(char);  // Output: 謳

Java:

char c = '\u8B33';
System.out.println(c);  // Output: 謳

JSON:

{"text": "\u8B33"}  // Value: 謳

Python:

char = '\u8B33'
print(char)  # Output: 謳

Perl:

my $char = "\x{8B33}";
print $char;  # Output: 謳

PHP:

$char = "\x{8B33}";
echo $char;  // Output: 謳

Ruby:

char = "\u{8B33}"
puts char  # Output: 謳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35635;</p>  <!-- Display: 謳 -->

HTML Hexadecimal:

<p>HTML hex: &#x8B33;</p>  <!-- Display: 謳 -->

URL Encoding:

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

Encodings

MD5:

1dffc68f8ea4b3d34243c5e03972a1d8

SHA1:

eb9afcc0564448baa2c335eb5ed2863c4766fb81

Base64:

6Kyz