Unicode Finder

"譎" U+8B4E(CJK UNIFIED IDEOGRAPH-8B4E)

U+8B4E
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8B4E

Programming

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

Web

CSS
\008B4E
HtmlDecimal
譎
HtmlHexadecimal
譎
Url
%E8%AD%8E

Code

MD5
d1e9b2dcb2806efc4467b5ac980353db
Sha1
d91b08187e581db32f0dc5878a4621a0e6ff9a98
Base64
6K2O

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8B4E';
console.log(char);  // Output: 譎

Java:

char c = '\u8B4E';
System.out.println(c);  // Output: 譎

JSON:

{"text": "\u8B4E"}  // Value: 譎

Python:

char = '\u8B4E'
print(char)  # Output: 譎

Perl:

my $char = "\x{8B4E}";
print $char;  # Output: 譎

PHP:

$char = "\x{8B4E}";
echo $char;  // Output: 譎

Ruby:

char = "\u{8B4E}"
puts char  # Output: 譎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35662;</p>  <!-- Display: 譎 -->

HTML Hexadecimal:

<p>HTML hex: &#x8B4E;</p>  <!-- Display: 譎 -->

URL Encoding:

// 譎 URL encoding
https://unicodefinder.com/search.php?query=%E8%AD%8E

Encodings

MD5:

d1e9b2dcb2806efc4467b5ac980353db

SHA1:

d91b08187e581db32f0dc5878a4621a0e6ff9a98

Base64:

6K2O