Unicode Finder

"譒" U+8B52(CJK UNIFIED IDEOGRAPH-8B52)

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

Programming

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

Web

CSS
\008B52
HtmlDecimal
譒
HtmlHexadecimal
譒
Url
%E8%AD%92

Code

MD5
647113a15bf507ad10a5b05e79ada87f
Sha1
6e2f850262bc3b4d0b4fd58044bbc9a9f79826e3
Base64
6K2S

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8B52';
console.log(char);  // Output: 譒

Java:

char c = '\u8B52';
System.out.println(c);  // Output: 譒

JSON:

{"text": "\u8B52"}  // Value: 譒

Python:

char = '\u8B52'
print(char)  # Output: 譒

Perl:

my $char = "\x{8B52}";
print $char;  # Output: 譒

PHP:

$char = "\x{8B52}";
echo $char;  // Output: 譒

Ruby:

char = "\u{8B52}"
puts char  # Output: 譒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35666;</p>  <!-- Display: 譒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8B52;</p>  <!-- Display: 譒 -->

URL Encoding:

// 譒 URL encoding
https://unicodefinder.com/search.php?query=%E8%AD%92

Encodings

MD5:

647113a15bf507ad10a5b05e79ada87f

SHA1:

6e2f850262bc3b4d0b4fd58044bbc9a9f79826e3

Base64:

6K2S